diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-08-30 09:37:33 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-08-30 09:37:33 +0000 |
commit | 2796180f9662b239d44c5605b4f1011c0fa051e4 (patch) | |
tree | e0933b798eabb43d9a2bec97db90e7d52c309dd4 /lisp/progmodes/grep.el | |
parent | a2e548a97eb82518771d81e709caa5aca71f2d7a (diff) | |
download | emacs-2796180f9662b239d44c5605b4f1011c0fa051e4.tar.gz |
(grep-files-aliases): Add cc alias.
Sort items in alphabetical order. Fix parens.
Diffstat (limited to 'lisp/progmodes/grep.el')
-rw-r--r-- | lisp/progmodes/grep.el | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index ff76907ed9a..091735ee09d 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -142,17 +142,17 @@ The following place holders should be present in the string: :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) |