# HG changeset patch # User Thien-Thi Nguyen # Date 1188466619 0 # Node ID d1d369daf8dd58988bf19813ab37ef1d673321cc # Parent e432197646f8f083cfdcc0dec37bf0398500cf75 (grep-files-aliases): Add cc alias. Sort items in alphabetical order. Fix parens. diff -r e432197646f8 -r d1d369daf8dd lisp/progmodes/grep.el --- 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)