emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

address@hidden: [PATCH] Emacs CVS: grep.el grep-files-aliases improvemen


From: Richard Stallman
Subject: address@hidden: [PATCH] Emacs CVS: grep.el grep-files-aliases improvements]
Date: Thu, 30 Aug 2007 03:15:58 -0400

Someone please install this and ack.

------- Start of forwarded message -------
X-Spam-Status: No, score=0.0 required=5.0 tests=UNPARSEABLE_RELAY 
        autolearn=failed version=3.1.0
From: Jari Aalto <address@hidden>
To: address@hidden
Date: Tue, 28 Aug 2007 02:37:34 +0300
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Subject: [PATCH] Emacs CVS: grep.el grep-files-aliases improvements


Patch against CVS as of 2007-08-28--0203 UTC+2

2007-08-28  Jari Aalto  <address@hidden>

        * progmodes/grep.el (grep-files-aliases): Add cc alias.
        Sort items in alphabetical order. Fix parens.

- --- a/progmodes/grep.el
+++ b/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)



_______________________________________________
bug-gnu-emacs mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/bug-gnu-emacs
------- End of forwarded message -------




reply via email to

[Prev in Thread] Current Thread [Next in Thread]