Mercurial > emacs
changeset 83780:d1d369daf8dd
(grep-files-aliases): Add cc alias.
Sort items in alphabetical order. Fix parens.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Thu, 30 Aug 2007 09:36:59 +0000 |
parents | e432197646f8 |
children | dfe08d4a5f5f |
files | lisp/progmodes/grep.el |
diffstat | 1 files changed, 11 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/grep.el Thu Aug 30 09:33:49 2007 +0000 +++ b/lisp/progmodes/grep.el Thu Aug 30 09:36:59 2007 +0000 @@ -142,17 +142,17 @@ :version "22.1" :group 'grep) -(defcustom grep-files-aliases '( - ("el" . "*.el") - ("ch" . "*.[ch]") - ("c" . "*.c") - ("h" . "*.h") - ("asm" . "*.[sS]") - ("m" . "[Mm]akefile*") - ("l" . "[Cc]hange[Ll]og*") - ("tex" . "*.tex") - ("texi" . "*.texi") - ) +(defcustom grep-files-aliases + '(("asm" . "*.[sS]") + ("c" . "*.c") + ("cc" . "*.cc") + ("ch" . "*.[ch]") + ("el" . "*.el") + ("h" . "*.h") + ("l" . "[Cc]hange[Ll]og*") + ("m" . "[Mm]akefile*") + ("tex" . "*.tex") + ("texi" . "*.texi")) "*Alist of aliases for the FILES argument to `lgrep' and `rgrep'." :type 'alist :group 'grep)