[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Emacs CVS: grep.el grep-files-aliases improvements
From: |
Jari Aalto |
Subject: |
[PATCH] Emacs CVS: grep.el grep-files-aliases improvements |
Date: |
Tue, 28 Aug 2007 02:37:34 +0300 |
User-agent: |
Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (windows-nt) |
Patch against CVS as of 2007-08-28--0203 UTC+2
2007-08-28 Jari Aalto <jari.aalto@cante.net>
* 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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [PATCH] Emacs CVS: grep.el grep-files-aliases improvements,
Jari Aalto <=