1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

* lisp/paths.el: Remove no-byte-compile.

* lisp/loadup.el: No need to load lisp/paths.el uncompiled.

* src/lisp.mk (lisp): Update for this change.
This commit is contained in:
Glenn Morris 2012-05-25 18:13:24 -04:00
parent 8825930890
commit f9f334f0c2
4 changed files with 9 additions and 5 deletions

View File

@ -1,5 +1,8 @@
2012-05-25 Glenn Morris <rgm@gnu.org>
* paths.el: Remove no-byte-compile.
* loadup.el: No need to load paths.el uncompiled.
* image.el (imagemagick-types-inhibit): Doc fix.
* version.el: Remove no-byte-compile and associated formatting.

View File

@ -177,7 +177,7 @@
(load "rfn-eshadow")
(load "menu-bar")
(load "paths.el") ;Don't get confused if someone compiled paths by mistake.
(load "paths")
(load "emacs-lisp/lisp")
(load "textmodes/page")
(load "register")

View File

@ -1,4 +1,4 @@
;;; paths.el --- define pathnames for use by various Emacs commands -*- no-byte-compile: t -*-
;;; paths.el --- define pathnames for use by various Emacs commands
;; Copyright (C) 1986, 1988, 1994, 1999-2012 Free Software Foundation, Inc.

View File

@ -30,8 +30,9 @@
## sed -e 's/"[ )].*//' -n -e '/(load "/ s/.*load "//p' loadup.el | \
## grep -vE 'site-|ldefs-boot'
## minus any duplicates.
## Note that you cannot just add a ".elc" extension to every file,
## since some of them are no-byte-compile (eg some language/ ones).
## Note that you can generally just add a ".elc" extension to every file
## that does not have an explicit .el extension, but beware of any
## no-byte-compile ones.
## Confusingly, term/internal is not in loadup, but is unconditionally
## loaded by pc-win, which is.
@ -120,7 +121,7 @@ lisp = \
$(lispsource)/isearch.elc \
$(lispsource)/rfn-eshadow.elc \
$(lispsource)/menu-bar.elc \
$(lispsource)/paths.el \
$(lispsource)/paths.elc \
$(lispsource)/emacs-lisp/lisp.elc \
$(lispsource)/textmodes/page.elc \
$(lispsource)/register.elc \