]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/paths.el: Remove no-byte-compile.
authorGlenn Morris <rgm@gnu.org>
Fri, 25 May 2012 22:13:24 +0000 (18:13 -0400)
committerGlenn Morris <rgm@gnu.org>
Fri, 25 May 2012 22:13:24 +0000 (18:13 -0400)
* lisp/loadup.el: No need to load lisp/paths.el uncompiled.

* src/lisp.mk (lisp): Update for this change.

lisp/ChangeLog
lisp/loadup.el
lisp/paths.el
src/lisp.mk

index 36d81234a78ac7a1458482c1bc1f57baa6cb1d99..9e2f17d4fc8586d7d617e439bbfa4189bde14e34 100644 (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.
index 38c1f82568bb1c3591205842ce9ce6e635e4e1c0..c5180e9ff6ce13bca27c1d278f16e804e87a53e6 100644 (file)
 (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")
index 8ed05344f0a85111adc9789682944d7ab1b35b51..7df703762667b25b369ed2b303be35e834ca3470 100644 (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.
 
index bd0ec22378744ce4e63f4552fc256ac64631de42..c9966c6506c2cf11c19b5a40a8ffe4dbe4dbc75c 100644 (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 \