Mercurial > hg > xemacs-beta
comparison lisp/packages/compile.el @ 74:54cc21c15cbb r20-0b32
Import from CVS: tag r20-0b32
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:04:33 +0200 |
parents | 131b0175ea99 |
children | 6a378aca36af |
comparison
equal
deleted
inserted
replaced
73:e2d7a37b7c8d | 74:54cc21c15cbb |
---|---|
208 \\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4) | 208 \\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4) |
209 | 209 |
210 ;; jwz: | 210 ;; jwz: |
211 ;; IRIX 5.2 | 211 ;; IRIX 5.2 |
212 ;; cfe: Warning 712: foo.c, line 2: illegal combination of pointer and ... | 212 ;; cfe: Warning 712: foo.c, line 2: illegal combination of pointer and ... |
213 (" \\([^ \"\n,]+\\), line \\([0-9]+\\):" 1 2) | 213 (" \\([^ \n,\"]+\\), line \\([0-9]+\\):" 1 2) |
214 ;; IRIX 5.2 | 214 ;; IRIX 5.2 |
215 ;; cfe: Warning 600: xfe.c: 170: Not in a conditional directive while ... | 215 ;; cfe: Warning 600: xfe.c: 170: Not in a conditional directive while ... |
216 (": \\([^ \n,]+\\): \\([0-9]+\\):" 1 2) | 216 (": \\([^ \n,\"]+\\): \\([0-9]+\\):" 1 2) |
217 | 217 |
218 ;; Cray C compiler error messages | 218 ;; Cray C compiler error messages |
219 ("\n\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5) | 219 ("\n\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5) |
220 | 220 |
221 ;; IBM C/C++ Tools 2.01: | 221 ;; IBM C/C++ Tools 2.01: |
301 (defvar compile-history nil) | 301 (defvar compile-history nil) |
302 ;; History of grep commands. | 302 ;; History of grep commands. |
303 (defvar grep-history nil) | 303 (defvar grep-history nil) |
304 | 304 |
305 ;; XEmacs | 305 ;; XEmacs |
306 (defconst compilation-font-lock-keywords (purecopy | 306 (defvar compilation-font-lock-keywords (purecopy |
307 (list | 307 (list |
308 '("^[-_.\"A-Za-z0-9/+]+\\(:\\|, line \\)[0-9]+: \\([wW]arning:\\).*$" . | 308 '("^[-_.\"A-Za-z0-9/+]+\\(:\\|, line \\)[0-9]+: \\([wW]arning:\\).*$" . |
309 font-lock-keyword-face) | 309 font-lock-keyword-face) |
310 '("^[-_.\"A-Za-z0-9/+]+\\(: *\\|, line \\)[0-9]+:.*$" . font-lock-function-name-face) | 310 '("^[-_.\"A-Za-z0-9/+]+\\(: *\\|, line \\)[0-9]+:.*$" . font-lock-function-name-face) |
311 '("^[^:\n]+-[a-zA-Z][^:\n]+$" . font-lock-doc-string-face) | 311 '("^[^:\n]+-[a-zA-Z][^:\n]+$" . font-lock-doc-string-face) |