Mercurial > emacs
comparison lisp/progmodes/grep.el @ 105939:a0f778f4a995
* term/x-win.el (x-gtk-stock-map):
* progmodes/vera-mode.el (auto-mode-alist):
* progmodes/inf-lisp.el (inferior-lisp-filter-regexp)
(inferior-lisp-program, inferior-lisp-load-command):
* progmodes/hideshow.el (hs-special-modes-alist):
* progmodes/gud.el (same-window-regexps):
* progmodes/grep.el (grep-program, find-program, xargs-program):
* net/telnet.el (same-window-regexps):
* net/rlogin.el (same-window-regexps):
* language/ethiopic.el (font-ccl-encoder-alist):
* vc-sccs.el (vc-sccs-master-templates):
* vc-rcs.el (vc-rcs-master-templates):
* subr.el (cl-assertion-failed):
* simple.el (next-error-overlay-arrow-position):
* lpr.el (lpr-command):
* locate.el (locate-ls-subdir-switches):
* info.el (same-window-regexps, info)
(Info-goto-emacs-command-node, Info-goto-emacs-key-command-node):
* image-mode.el (image-mode, auto-mode-alist):
* hippie-exp.el (hippie-expand-ignore-buffers):
* format.el (format-alist):
* find-dired.el (find-ls-subdir-switches, find-grep-options)
(find-name-arg):
* facemenu.el (facemenu-keybindings):
* dired.el (dired-listing-switches, dired-chown-program):
* diff.el (diff-switches, diff-command):
* cus-edit.el (same-window-regexps):
* bindings.el (mode-line-mule-info)
(mode-line-buffer-identification): Purecopy strings.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Wed, 11 Nov 2009 05:49:09 +0000 |
parents | f8ba8d6fd250 |
children | e411fa8e0abf |
comparison
equal
deleted
inserted
replaced
105938:788a43a6e3c8 | 105939:a0f778f4a995 |
---|---|
402 (replace-match "" t t nil 1)))) | 402 (replace-match "" t t nil 1)))) |
403 "Additional things to highlight in grep output. | 403 "Additional things to highlight in grep output. |
404 This gets tacked on the end of the generated expressions.") | 404 This gets tacked on the end of the generated expressions.") |
405 | 405 |
406 ;;;###autoload | 406 ;;;###autoload |
407 (defvar grep-program "grep" | 407 (defvar grep-program (purecopy "grep") |
408 "The default grep program for `grep-command' and `grep-find-command'. | 408 "The default grep program for `grep-command' and `grep-find-command'. |
409 This variable's value takes effect when `grep-compute-defaults' is called.") | 409 This variable's value takes effect when `grep-compute-defaults' is called.") |
410 | 410 |
411 ;;;###autoload | 411 ;;;###autoload |
412 (defvar find-program "find" | 412 (defvar find-program (purecopy "find") |
413 "The default find program for `grep-find-command'. | 413 "The default find program for `grep-find-command'. |
414 This variable's value takes effect when `grep-compute-defaults' is called.") | 414 This variable's value takes effect when `grep-compute-defaults' is called.") |
415 | 415 |
416 ;;;###autoload | 416 ;;;###autoload |
417 (defvar xargs-program "xargs" | 417 (defvar xargs-program (purecopy "xargs") |
418 "The default xargs program for `grep-find-command'. | 418 "The default xargs program for `grep-find-command'. |
419 See `grep-find-use-xargs'. | 419 See `grep-find-use-xargs'. |
420 This variable's value takes effect when `grep-compute-defaults' is called.") | 420 This variable's value takes effect when `grep-compute-defaults' is called.") |
421 | 421 |
422 ;;;###autoload | 422 ;;;###autoload |