comparison lisp/progmodes/grep.el @ 105950:e411fa8e0abf

* 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.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 11 Nov 2009 06:36:41 +0000
parents a0f778f4a995
children f58be5f9ad87
comparison
equal deleted inserted replaced
105949:981ea078cf76 105950:e411fa8e0abf
327 A grep buffer becomes most recent when you select Grep mode in it. 327 A grep buffer becomes most recent when you select Grep mode in it.
328 Notice that using \\[next-error] or \\[compile-goto-error] modifies 328 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
336 ;; produces them 336 ;; produces them
337 ;; ("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2\\(?:\\([0-9]+\\)\\(?:-\\([0-9]+\\)\\)?\\2\\)?" 337 ;; ("^\\(.+?\\)\\(:[ \t]*\\)\\([0-9]+\\)\\2\\(?:\\([0-9]+\\)\\(?:-\\([0-9]+\\)\\)?\\2\\)?"