comparison lisp/progmodes/compile.el @ 13972:6d4e18531dd2

(compilation-error-list): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Thu, 04 Jan 1996 23:30:53 +0000
parents 57cd7ef01dc7
children 1300c7703f67
comparison
equal deleted inserted replaced
13971:49207f2e2130 13972:6d4e18531dd2
47 47
48 The value may be t instead of a list; this means that the buffer of 48 The value may be t instead of a list; this means that the buffer of
49 error messages should be reparsed the next time the list of errors is wanted. 49 error messages should be reparsed the next time the list of errors is wanted.
50 50
51 Some other commands (like `diff') use this list to control the error 51 Some other commands (like `diff') use this list to control the error
52 message tracking facilites; if you change its structure, you should make 52 message tracking facilities; if you change its structure, you should make
53 sure you also change those packages. Perhaps it is better not to change 53 sure you also change those packages. Perhaps it is better not to change
54 it at all.") 54 it at all.")
55 55
56 (defvar compilation-old-error-list nil 56 (defvar compilation-old-error-list nil
57 "Value of `compilation-error-list' after errors were parsed.") 57 "Value of `compilation-error-list' after errors were parsed.")
140 ;; Some SGI cc version: 140 ;; Some SGI cc version:
141 ;; cfe: Warning 835: foo.c, line 2: something 141 ;; cfe: Warning 835: foo.c, line 2: something
142 ("\n\\(cfe\\|fort\\): [^:\n]*: \\([^ \n]*\\), line \\([0-9]+\\):" 2 3) 142 ("\n\\(cfe\\|fort\\): [^:\n]*: \\([^ \n]*\\), line \\([0-9]+\\):" 2 3)
143 ;; Error on line 3 of t.f: Execution error unclassifiable statement 143 ;; Error on line 3 of t.f: Execution error unclassifiable statement
144 ;; Unknown who does this: 144 ;; Unknown who does this:
145 ;; Line 45 of "foo.c": bloofel undefined 145 ;; Line 45 of "foo.c": bloofle undefined
146 ;; Absoft FORTRAN 77 Compiler 3.1.3 146 ;; Absoft FORTRAN 77 Compiler 3.1.3
147 ;; error on line 19 of fplot.f: spelling error? 147 ;; error on line 19 of fplot.f: spelling error?
148 ;; warning on line 17 of fplot.f: data type is undefined for variable d 148 ;; warning on line 17 of fplot.f: data type is undefined for variable d
149 ("\\(\n\\|on \\)[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\ 149 ("\\(\n\\|on \\)[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\
150 of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2) 150 of[ \t]+\"?\\([^\":\n]+\\)\"?:" 3 2)