comparison lisp/progmodes/compile.el @ 7882:b91169855db4

Fix regexp in last change.
author Roland McGrath <roland@gnu.org>
date Tue, 14 Jun 1994 00:58:05 +0000
parents bffe692e2844
children b88934e64021
comparison
equal deleted inserted replaced
7881:4ab8723cd491 7882:b91169855db4
113 ;; Warning ping.c 68: Call to function 'func' with no prototype 113 ;; Warning ping.c 68: Call to function 'func' with no prototype
114 ;; 114 ;;
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)
123 ("[ \t:]\\([^:( \t\n]+\\)[:(](+[ \t]*\\([0-9]+\\))[:) \t]*$" 1 2) 123 ("[ \t:]\\([^:( \t\n]+\\)[:(](+[ \t]*\\([0-9]+\\))[:) \t]*$" 1 2)
124 124