aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/ChangeLog
diff options
context:
space:
mode:
authorJuri Linkov2011-09-05 11:20:02 +0300
committerJuri Linkov2011-09-05 11:20:02 +0300
commitf62bd846552a090f3ba5e136d6d9cdb4c07ed7be (patch)
treeb199c66feaaaa79217d7fbcd5c5f11f16875f68e /lisp/ChangeLog
parent045820ecd3b3f4396474fae297945d58d9187e6a (diff)
downloademacs-f62bd846552a090f3ba5e136d6d9cdb4c07ed7be.tar.gz
emacs-f62bd846552a090f3ba5e136d6d9cdb4c07ed7be.zip
Grep related fixes.
* etc/grep.txt: Add `eval' to the Local Variables section that emulates `grep-filter'. * lisp/progmodes/grep.el (grep-filter): Avoid incomplete processing by keeping point where processing of grep matches begins, and continue to delete remaining escape sequences from the same point. (grep-filter): Make leading zero optional in "0?1;31m" because git-grep emits "\033[1;31m" escape sequences unlike expected "\033[01;31m" as GNU Grep does. (grep-process-setup): Replace obsolete "ml=" with newer "sl=". Fixes: debbugs:9408
Diffstat (limited to 'lisp/ChangeLog')
-rw-r--r--lisp/ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 59ecd1a3c12..d30010d6016 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,15 @@
12011-09-05 Juri Linkov <juri@jurta.org> 12011-09-05 Juri Linkov <juri@jurta.org>
2 2
3 * progmodes/grep.el (grep-filter): Avoid incomplete processing by
4 keeping point where processing of grep matches begins, and
5 continue to delete remaining escape sequences from the same point.
6 (grep-filter): Make leading zero optional in "0?1;31m" because
7 git-grep emits "\033[1;31m" escape sequences unlike expected
8 "\033[01;31m" as GNU Grep does (bug#9408).
9 (grep-process-setup): Replace obsolete "ml=" with newer "sl=".
10
112011-09-05 Juri Linkov <juri@jurta.org>
12
3 * subr.el (y-or-n-p): Capitalize "yes". 13 * subr.el (y-or-n-p): Capitalize "yes".
4 14
52011-09-04 Michael Albinus <michael.albinus@gmx.de> 152011-09-04 Michael Albinus <michael.albinus@gmx.de>