aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Rudalics2007-06-10 16:15:10 +0000
committerMartin Rudalics2007-06-10 16:15:10 +0000
commit7940bf7dc0a572e6d05bb198c738b436657210f1 (patch)
tree9d0b682c857e8b48058986873d0f1eae3c449ec8
parent089a966d56ff9cbbae5ca5b3af4694da7ca6dcaa (diff)
downloademacs-7940bf7dc0a572e6d05bb198c738b436657210f1.tar.gz
emacs-7940bf7dc0a572e6d05bb198c738b436657210f1.zip
(byte-compile-find-cl-functions): Match
against file-name-nondirectory. Fix text on user customization variables.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/emacs-lisp/bytecomp.el5
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 337e0be3ef9..c0b00b8fbb1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12007-06-10 Martin Rudalics <rudalics@gmx.at>
2
3 * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions): Match
4 against file-name-nondirectory.
5 Fix text on user customization variables.
6 Reported by Johan Bockg,Ae(Brd <bojohan@dd.chalmers.se>.
7
12007-06-09 Alfred M. Szmidt <ams@gnu.org> (tiny change) 82007-06-09 Alfred M. Szmidt <ams@gnu.org> (tiny change)
2 9
3 * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo. 10 * mail/rmail.el (rmail-movemail-variant-in-use): Fix doc typo.
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index 0a37f098a7b..619b7533ca7 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -98,7 +98,7 @@
98;; `obsolete' (obsolete variables and functions) 98;; `obsolete' (obsolete variables and functions)
99;; `noruntime' (calls to functions only defined 99;; `noruntime' (calls to functions only defined
100;; within `eval-when-compile') 100;; within `eval-when-compile')
101;; `cl-warnings' (calls to CL functions) 101;; `cl-functions' (calls to CL functions)
102;; `interactive-only' (calls to commands that are 102;; `interactive-only' (calls to commands that are
103;; not good to call from Lisp) 103;; not good to call from Lisp)
104;; `make-local' (dubious calls to 104;; `make-local' (dubious calls to
@@ -1348,7 +1348,8 @@ extra args."
1348 (unless byte-compile-cl-functions 1348 (unless byte-compile-cl-functions
1349 (dolist (elt load-history) 1349 (dolist (elt load-history)
1350 (when (and (stringp (car elt)) 1350 (when (and (stringp (car elt))
1351 (string-match "^cl\\>" (car elt))) 1351 (string-match
1352 "^cl\\>" (file-name-nondirectory (car elt))))
1352 (setq byte-compile-cl-functions 1353 (setq byte-compile-cl-functions
1353 (append byte-compile-cl-functions 1354 (append byte-compile-cl-functions
1354 (cdr elt))))) 1355 (cdr elt)))))