aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1994-06-14 00:58:05 +0000
committerRoland McGrath1994-06-14 00:58:05 +0000
commit81d93b5e634be0eaa5610eed035fcabfe1e05c40 (patch)
tree95af8de24c7f04e7c7e7dae721557df75cd87ac6
parent52b6d4459f3a993956ac3cd8b476a209b6d13058 (diff)
downloademacs-81d93b5e634be0eaa5610eed035fcabfe1e05c40.tar.gz
emacs-81d93b5e634be0eaa5610eed035fcabfe1e05c40.zip
Fix regexp in last change.
-rw-r--r--lisp/progmodes/compile.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 76e71ec8215..b217f9304ad 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -115,8 +115,8 @@ or when it is used with \\[next-error] or \\[compile-goto-error].")
115 ;; We'll insist that the number be followed by a colon or closing 115 ;; We'll insist that the number be followed by a colon or closing
116 ;; paren, because otherwise this matches just about anything 116 ;; paren, because otherwise this matches just about anything
117 ;; containing a number with spaces around it. 117 ;; containing a number with spaces around it.
118 ("\n\\(Error\\|Warning\\)[ \t]*\\([^:( \t\n]+\\)\ 118 ("\n\\(Error\\|Warning\\)?[ \t]*\\([^:( \t\n]+\\)\
119[:(][ \t]*\\([0-9]+\\)[:) \t]" 2 3) 119[:(]?[ \t]*\\([0-9]+\\)[:) \t]" 2 3)
120 120
121 ;; 4.3BSD lint pass 2 121 ;; 4.3BSD lint pass 2
122 ;; strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8) 122 ;; strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8)