aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2009-02-02 03:27:30 +0000
committerStefan Monnier2009-02-02 03:27:30 +0000
commit5692cc8c4f19a299d6679f6b54f60f42a2bc76e3 (patch)
treec0993650d20990514372f0ba084f49c2fa254475
parent8f4cafbce212e50c78c75092eec0f2f3c801594e (diff)
downloademacs-5692cc8c4f19a299d6679f6b54f60f42a2bc76e3.tar.gz
emacs-5692cc8c4f19a299d6679f6b54f60f42a2bc76e3.zip
(emacs-lisp-file-regexp): Fix up EOB.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/emacs-lisp/bytecomp.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ce6ee7b83fc..cf75fb1af23 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12009-02-02 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Fix up EOB.
4
12009-02-01 Stefan Monnier <monnier@iro.umontreal.ca> 52009-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * cmuscheme.el (scheme-args-to-list): Remove. 7 * cmuscheme.el (scheme-args-to-list): Remove.
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el
index f441d28ac4f..7f0387d7ed1 100644
--- a/lisp/emacs-lisp/bytecomp.el
+++ b/lisp/emacs-lisp/bytecomp.el
@@ -197,7 +197,7 @@
197 "Emacs Lisp byte-compiler." 197 "Emacs Lisp byte-compiler."
198 :group 'lisp) 198 :group 'lisp)
199 199
200(defcustom emacs-lisp-file-regexp "\\.el$" 200(defcustom emacs-lisp-file-regexp "\\.el\\'"
201 "Regexp which matches Emacs Lisp source files. 201 "Regexp which matches Emacs Lisp source files.
202You may want to redefine the function `byte-compile-dest-file' 202You may want to redefine the function `byte-compile-dest-file'
203if you change this variable." 203if you change this variable."