comparison lisp/progmodes/compile.el @ 23228:0aaa026229eb

(compilation-error-regexp-alist): Fix previous change: allow . and _ in command name.
author Karl Heuer <kwzh@gnu.org>
date Thu, 10 Sep 1998 15:58:37 +0000
parents 85a5c1e86785
children 03626baa368a
comparison
equal deleted inserted replaced
23227:457da99ff43a 23228:0aaa026229eb
154 ;; jade:dbcommon.dsl:133:17:E: missing argument for function call 154 ;; jade:dbcommon.dsl:133:17:E: missing argument for function call
155 ;; 155 ;;
156 ;; We'll insist that the number be followed by a colon or closing 156 ;; We'll insist that the number be followed by a colon or closing
157 ;; paren, because otherwise this matches just about anything 157 ;; paren, because otherwise this matches just about anything
158 ;; containing a number with spaces around it. 158 ;; containing a number with spaces around it.
159 ("\\([a-zA-Z]+: ?\\)?\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\ 159 ("\\([-a-zA-Z._]+: ?\\)?\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\
160 \\([) \t]\\|:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 2 3 6) 160 \\([) \t]\\|:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 2 3 6)
161 161
162 ;; Microsoft C/C++: 162 ;; Microsoft C/C++:
163 ;; keyboard.c(537) : warning C4005: 'min' : macro redefinition 163 ;; keyboard.c(537) : warning C4005: 'min' : macro redefinition
164 ;; d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if' 164 ;; d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if'