(save-excursion
;; 'new' should be part of the line
(goto-char (c-point 'iopl))
- (looking-at ".*\\s *new\\s *.*"))
+ (looking-at ".*new.*"))
;; Line should not already be terminated
(save-excursion
(goto-char (c-point 'eopl))
"\\([^(\r\n)]+\\)(\\([0-9]+\\)\\(?:,\\([0-9]+\\)\\)?"
;; handle weird devenv output format with 4 numbers, not 2 by having optional
;; extra capture-groups.
- "\\(?:,\\([0-9]+\\)\\)?*): "
+ "\\(?:,\\([0-9]+\\)\\)*): "
"warning [[:alnum:]]+: .+$")
"Regexp to match compilation warning from xbuild.")