diff options
| author | Dan Nicolaescu | 2009-11-11 06:36:41 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-11-11 06:36:41 +0000 |
| commit | 2f7f4beee9769664ec99df193a16fef337d8812a (patch) | |
| tree | 77e35fd95f6903ae58fcfbce4187ac3bb63493e2 /lisp/progmodes | |
| parent | a042de45b167334d8725debf27e6ece1be0a1f57 (diff) | |
| download | emacs-2f7f4beee9769664ec99df193a16fef337d8812a.tar.gz emacs-2f7f4beee9769664ec99df193a16fef337d8812a.zip | |
* progmodes/grep.el (grep-regexp-alist):
* international/mule-cmds.el (iso-2022-control-alist):
* emacs-lisp/timer.el (timer-duration-words):
* subr.el (version-separator, version-regexp-alist):
* minibuffer.el (completion-styles-alist):
* faces.el (face-attribute-name-alist, list-faces-sample-text):
Change defvars to defconsts.
Diffstat (limited to 'lisp/progmodes')
| -rw-r--r-- | lisp/progmodes/grep.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index 9387a087e47..7d01777d441 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -329,7 +329,7 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies | |||
| 329 | `complation-last-buffer' rather than `grep-last-buffer'.") | 329 | `complation-last-buffer' rather than `grep-last-buffer'.") |
| 330 | 330 | ||
| 331 | ;;;###autoload | 331 | ;;;###autoload |
| 332 | (defvar grep-regexp-alist | 332 | (defconst grep-regexp-alist |
| 333 | '(("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2" | 333 | '(("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2" |
| 334 | 1 3) | 334 | 1 3) |
| 335 | ;; Rule to match column numbers is commented out since no known grep | 335 | ;; Rule to match column numbers is commented out since no known grep |