From 2796180f9662b239d44c5605b4f1011c0fa051e4 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Thu, 30 Aug 2007 09:37:33 +0000 Subject: [PATCH 1/1] (grep-files-aliases): Add cc alias. Sort items in alphabetical order. Fix parens. --- lisp/ChangeLog | 3 +++ lisp/progmodes/grep.el | 22 +++++++++++----------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4c923e43a4..19c23c7b14 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 * vc-hg.el (vc-hg-extra-menu-map): New variable. diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index ff76907ed9..091735ee09 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) -- 2.20.1