mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-18 18:05:07 +00:00
(grep-regexp-alist): Remove the blank from
the character class after the (optional) drive, to support file names with embedded blanks.
This commit is contained in:
parent
76846b315d
commit
0d140e65af
@ -1,3 +1,9 @@
|
||||
2001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* progmodes/compile.el (grep-regexp-alist): Remove the blank from
|
||||
the character class after the (optional) drive, to support file
|
||||
names with embedded blanks.
|
||||
|
||||
2001-02-15 Sam Steingold <sds@gnu.org>
|
||||
|
||||
* textmodes/tex-mode.el (tex-shell-running):
|
||||
|
@ -397,8 +397,10 @@ Otherwise, it saves all modified buffers without asking."
|
||||
:type 'boolean
|
||||
:group 'compilation)
|
||||
|
||||
;; Note: the character class after the optional drive letter does not
|
||||
;; include a space to support file names with blanks.
|
||||
(defvar grep-regexp-alist
|
||||
'(("\\([a-zA-Z]?:?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2))
|
||||
'(("\\([a-zA-Z]?:?[^:(\t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2))
|
||||
"Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
|
||||
|
||||
(defvar grep-program
|
||||
|
Loading…
Reference in New Issue
Block a user