]> code.delx.au - gnu-emacs/commitdiff
(grep-files-aliases): Add cc alias.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 30 Aug 2007 09:37:33 +0000 (09:37 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 30 Aug 2007 09:37:33 +0000 (09:37 +0000)
Sort items in alphabetical order. Fix parens.

lisp/ChangeLog
lisp/progmodes/grep.el

index 4c923e43a4d147c4ec23f2930e8d4bb1cef7187b..19c23c7b14e34e2d0750c5facb03c2fd740304c7 100644 (file)
@@ -4,6 +4,9 @@
        monotone _MTN bookkeeping directory in workspaces.  Add
        RCS control directory.  List items in alphabetical order.
 
+       * progmodes/grep.el (grep-files-aliases): Add cc alias.
+       Sort items in alphabetical order. Fix parens.
+
 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * vc-hg.el (vc-hg-extra-menu-map): New variable.
index ff76907ed9a5f577bf1eb1b01451d3d854f02461..091735ee09de24b0bba78ee5f9ec8ccf8a52489b 100644 (file)
@@ -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)