emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108371: * lisp/paths.el: Remove n


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108371: * lisp/paths.el: Remove no-byte-compile.
Date: Fri, 02 Nov 2012 01:47:40 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108371
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2012-05-25 18:13:24 -0400
message:
  * 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.
modified:
  lisp/ChangeLog
  lisp/loadup.el
  lisp/paths.el
  src/lisp.mk
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-05-25 20:24:58 +0000
+++ b/lisp/ChangeLog    2012-05-25 22:13:24 +0000
@@ -1,5 +1,8 @@
 2012-05-25  Glenn Morris  <address@hidden>
 
+       * 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.

=== modified file 'lisp/loadup.el'
--- a/lisp/loadup.el    2012-05-25 18:57:51 +0000
+++ b/lisp/loadup.el    2012-05-25 22:13:24 +0000
@@ -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")

=== modified file 'lisp/paths.el'
--- a/lisp/paths.el     2012-05-24 20:40:19 +0000
+++ b/lisp/paths.el     2012-05-25 22:13:24 +0000
@@ -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.
 

=== modified file 'src/lisp.mk'
--- a/src/lisp.mk       2012-05-25 18:58:25 +0000
+++ b/src/lisp.mk       2012-05-25 22:13:24 +0000
@@ -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 @@
        $(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 \


reply via email to

[Prev in Thread] Current Thread [Next in Thread]