diff options
| author | Stefan Monnier | 2009-02-02 03:27:30 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-02-02 03:27:30 +0000 |
| commit | 5692cc8c4f19a299d6679f6b54f60f42a2bc76e3 (patch) | |
| tree | c0993650d20990514372f0ba084f49c2fa254475 | |
| parent | 8f4cafbce212e50c78c75092eec0f2f3c801594e (diff) | |
| download | emacs-5692cc8c4f19a299d6679f6b54f60f42a2bc76e3.tar.gz emacs-5692cc8c4f19a299d6679f6b54f60f42a2bc76e3.zip | |
(emacs-lisp-file-regexp): Fix up EOB.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
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 @@ | |||
| 1 | 2009-02-02 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * emacs-lisp/bytecomp.el (emacs-lisp-file-regexp): Fix up EOB. | ||
| 4 | |||
| 1 | 2009-02-01 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2009-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. |
| 202 | You may want to redefine the function `byte-compile-dest-file' | 202 | You may want to redefine the function `byte-compile-dest-file' |
| 203 | if you change this variable." | 203 | if you change this variable." |