diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/progmodes/grep.el | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f917dda73fa..da823b5f8cb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2005-02-08 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * progmodes/grep.el (grep-regexp-alist): Match an optional ^[[K | ||
| 4 | that some versions of grep produce. | ||
| 5 | (grep-mode-font-lock-keywords): Likewise. | ||
| 6 | |||
| 1 | 2005-02-09 Nick Roberts <nickrob@snap.net.nz> | 7 | 2005-02-09 Nick Roberts <nickrob@snap.net.nz> |
| 2 | 8 | ||
| 3 | * progmodes/gdb-ui.el (gdb-location-list): New variable. | 9 | * progmodes/gdb-ui.el (gdb-location-list): New variable. |
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index a3b1ab3abdd..ac052a893b2 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el | |||
| @@ -253,7 +253,7 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies | |||
| 253 | '(("^\\(.+?\\)[: \t]+\ | 253 | '(("^\\(.+?\\)[: \t]+\ |
| 254 | \\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\ | 254 | \\([0-9]+\\)\\([.:]?\\)\\([0-9]+\\)?\ |
| 255 | \\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?[: \t]" 1 (2 . 5) (4 . 6)) | 255 | \\(?:-\\(?:\\([0-9]+\\)\\3\\)?\\.?\\([0-9]+\\)?\\)?[: \t]" 1 (2 . 5) (4 . 6)) |
| 256 | ("^\\(.+?\\)[:(]+\\([0-9]+\\)\\([:)]\\).*?\\(\033\\[01;41m\\)\\(.*?\\)\\(\033\\[00m\\)" | 256 | ("^\\(.+?\\)[:(]+\\([0-9]+\\)\\([:)]\\).*?\\(\033\\[01;41m\\)\\(.*?\\)\\(\033\\[00m\\(\033\\[K\\)?\\)" |
| 257 | 1 2 | 257 | 1 2 |
| 258 | ;; Calculate column positions (beg . end) of first grep match on a line | 258 | ;; Calculate column positions (beg . end) of first grep match on a line |
| 259 | ((lambda () | 259 | ((lambda () |
| @@ -293,7 +293,7 @@ Notice that using \\[next-error] or \\[compile-goto-error] modifies | |||
| 293 | (1 compilation-warning-face) | 293 | (1 compilation-warning-face) |
| 294 | (2 compilation-line-face)) | 294 | (2 compilation-line-face)) |
| 295 | ;; Highlight grep matches and delete markers | 295 | ;; Highlight grep matches and delete markers |
| 296 | ("\\(\033\\[01;41m\\)\\(.*?\\)\\(\033\\[00m\\)" | 296 | ("\\(\033\\[01;41m\\)\\(.*?\\)\\(\033\\[00m\\(\033\\[K\\)?\\)" |
| 297 | (2 grep-match-face) | 297 | (2 grep-match-face) |
| 298 | ((lambda (p)) | 298 | ((lambda (p)) |
| 299 | (progn | 299 | (progn |