*** empty log message ***
[emacs.git] / lisp / progmodes / compile.el
blobf9ce01edd8589bff1173b1bd7539046311cd66e8
1 ;;; compile.el --- run compiler as inferior of Emacs, parse error messages
3 ;; Copyright (C) 1985, 86, 87, 93, 94, 95, 96, 97, 98, 1999, 2001, 2003
4 ;; Free Software Foundation, Inc.
6 ;; Author: Roland McGrath <roland@gnu.org>
7 ;; Maintainer: FSF
8 ;; Keywords: tools, processes
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
27 ;;; Commentary:
29 ;; This package provides the compile and grep facilities documented in
30 ;; the Emacs user's manual.
32 ;;; Code:
34 (defgroup compilation nil
35 "Run compiler as inferior of Emacs, parse error messages."
36 :group 'tools
37 :group 'processes)
40 ;;;###autoload
41 (defcustom compilation-mode-hook nil
42 "*List of hook functions run by `compilation-mode' (see `run-hooks')."
43 :type 'hook
44 :group 'compilation)
46 ;;;###autoload
47 (defcustom compilation-window-height nil
48 "*Number of lines in a compilation window. If nil, use Emacs default."
49 :type '(choice (const :tag "Default" nil)
50 integer)
51 :group 'compilation)
53 (defcustom compile-auto-highlight nil
54 "*Specify how many compiler errors to highlight (and parse) initially.
55 \(Highlighting applies to an error message when the mouse is over it.)
56 If this is a number N, all compiler error messages in the first N lines
57 are highlighted and parsed as soon as they arrive in Emacs.
58 If t, highlight and parse the whole compilation output as soon as it arrives.
59 If nil, don't highlight or parse any of the buffer until you try to
60 move to the error messages.
62 Those messages which are not parsed and highlighted initially
63 will be parsed and highlighted as soon as you try to move to them."
64 :type '(choice (const :tag "All" t)
65 (const :tag "None" nil)
66 (integer :tag "First N lines"))
67 :group 'compilation)
69 (defcustom grep-command nil
70 "The default grep command for \\[grep].
71 If the grep program used supports an option to always include file names
72 in its output (such as the `-H' option to GNU grep), it's a good idea to
73 include it when specifying `grep-command'.
75 The default value of this variable is set up by `grep-compute-defaults';
76 call that function before using this variable in your program."
77 :type '(choice string
78 (const :tag "Not Set" nil))
79 :group 'compilation)
81 (defcustom grep-use-null-device 'auto-detect
82 "If t, append the value of `null-device' to `grep' commands.
83 This is done to ensure that the output of grep includes the filename of
84 any match in the case where only a single file is searched, and is not
85 necessary if the grep program used supports the `-H' option.
87 The default value of this variable is set up by `grep-compute-defaults';
88 call that function before using this variable in your program."
89 :type 'boolean
90 :type '(choice (const :tag "Do Not Append Null Device" nil)
91 (const :tag "Append Null Device" t)
92 (other :tag "Not Set" auto-detect))
93 :group 'compilation)
95 (defcustom grep-find-command nil
96 "The default find command for \\[grep-find].
97 The default value of this variable is set up by `grep-compute-defaults';
98 call that function before using this variable in your program."
99 :type '(choice string
100 (const :tag "Not Set" nil))
101 :group 'compilation)
103 (defcustom grep-tree-command nil
104 "The default find command for \\[grep-tree].
105 The default value of this variable is set up by `grep-compute-defaults';
106 call that function before using this variable in your program.
107 The following place holders should be present in the string:
108 <D> - base directory for find
109 <X> - find options to restrict or expand the directory list
110 <F> - find options to limit the files matched
111 <C> - place to put -i if case insensitive grep
112 <R> - the regular expression searched for."
113 :type '(choice string
114 (const :tag "Not Set" nil))
115 :version "21.4"
116 :group 'compilation)
118 (defcustom grep-tree-files-aliases '(
119 ("ch" . "*.[ch]")
120 ("c" . "*.c")
121 ("h" . "*.h")
122 ("m" . "[Mm]akefile*")
123 ("asm" . "*.[sS]")
124 ("all" . "*")
125 ("el" . "*.el")
127 "*Alist of aliases for the FILES argument to `grep-tree'."
128 :type 'alist
129 :group 'compilation)
131 (defcustom grep-tree-ignore-case t
132 "*If non-nil, `grep-tree' ignores case in matches."
133 :type 'boolean
134 :group 'compilation)
136 (defcustom grep-tree-ignore-CVS-directories t
137 "*If non-nil, `grep-tree' does no recurse into CVS directories."
138 :type 'boolean
139 :group 'compilation)
141 (defvar compilation-error-list nil
142 "List of error message descriptors for visiting erring functions.
143 Each error descriptor is a cons (or nil). Its car is a marker pointing to
144 an error message. If its cdr is a marker, it points to the text of the
145 line the message is about. If its cdr is a cons, it is a list
146 \(\(DIRECTORY . FILE\) LINE [COLUMN]\). Or its cdr may be nil if that
147 error is not interesting.
149 The value may be t instead of a list; this means that the buffer of
150 error messages should be reparsed the next time the list of errors is wanted.
152 Some other commands (like `diff') use this list to control the error
153 message tracking facilities; if you change its structure, you should make
154 sure you also change those packages. Perhaps it is better not to change
155 it at all.")
157 (defvar compilation-old-error-list nil
158 "Value of `compilation-error-list' after errors were parsed.")
160 (defvar compilation-parse-errors-function 'compilation-parse-errors
161 "Function to call to parse error messages from a compilation.
162 It takes args LIMIT-SEARCH and FIND-AT-LEAST.
163 If LIMIT-SEARCH is non-nil, don't bother parsing past that location.
164 If FIND-AT-LEAST is non-nil, don't bother parsing after finding that
165 many new errors.
166 It should read in the source files which have errors and set
167 `compilation-error-list' to a list with an element for each error message
168 found. See that variable for more info.")
170 (defvar compilation-parse-errors-filename-function nil
171 "Function to call to post-process filenames while parsing error messages.
172 It takes one arg FILENAME which is the name of a file as found
173 in the compilation output, and should return a transformed file name.")
175 ;;;###autoload
176 (defvar compilation-process-setup-function nil
177 "*Function to call to customize the compilation process.
178 This functions is called immediately before the compilation process is
179 started. It can be used to set any variables or functions that are used
180 while processing the output of the compilation process.")
182 ;;;###autoload
183 (defvar compilation-buffer-name-function nil
184 "Function to compute the name of a compilation buffer.
185 The function receives one argument, the name of the major mode of the
186 compilation buffer. It should return a string.
187 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
189 ;;;###autoload
190 (defvar compilation-finish-function nil
191 "Function to call when a compilation process finishes.
192 It is called with two arguments: the compilation buffer, and a string
193 describing how the process finished.")
195 ;;;###autoload
196 (defvar compilation-finish-functions nil
197 "Functions to call when a compilation process finishes.
198 Each function is called with two arguments: the compilation buffer,
199 and a string describing how the process finished.")
201 (defvar compilation-last-buffer nil
202 "The most recent compilation buffer.
203 A buffer becomes most recent when its compilation is started
204 or when it is used with \\[next-error] or \\[compile-goto-error].")
206 (defvar compilation-in-progress nil
207 "List of compilation processes now running.")
208 (or (assq 'compilation-in-progress minor-mode-alist)
209 (setq minor-mode-alist (cons '(compilation-in-progress " Compiling")
210 minor-mode-alist)))
212 (defvar compilation-parsing-end nil
213 "Marker position of end of buffer when last error messages were parsed.")
215 (defvar compilation-error-message "No more errors"
216 "Message to print when no more matches are found.")
218 (defvar compilation-arguments nil
219 "Arguments that were given to `compile-internal'.")
221 (defvar compilation-num-errors-found)
223 (defvar compilation-error-regexp-alist
225 ;; NOTE! See also grep-regexp-alist, below.
227 ;; 4.3BSD grep, cc, lint pass 1:
228 ;; /usr/src/foo/foo.c(8): warning: w may be used before set
229 ;; or GNU utilities:
230 ;; foo.c:8: error message
231 ;; or HP-UX 7.0 fc:
232 ;; foo.f :16 some horrible error message
233 ;; or GNU utilities with column (GNAT 1.82):
234 ;; foo.adb:2:1: Unit name does not match file name
235 ;; or with column and program name:
236 ;; jade:dbcommon.dsl:133:17:E: missing argument for function call
238 ;; We'll insist that the number be followed by a colon or closing
239 ;; paren, because otherwise this matches just about anything
240 ;; containing a number with spaces around it.
242 ;; We insist on a non-digit in the file name
243 ;; so that we don't mistake the file name for a command name
244 ;; and take the line number as the file name.
245 ("\\([a-zA-Z][-a-zA-Z._0-9]+: ?\\)?\
246 \\([a-zA-Z]?:?[^:( \t\n]*[^:( \t\n0-9][^:( \t\n]*\\)[:(][ \t]*\\([0-9]+\\)\
247 \\([) \t]\\|:\\(\\([0-9]+:\\)\\|[0-9]*[^:0-9]\\)\\)" 2 3 6)
249 ;; GNU utilities with precise locations (line and columns),
250 ;; possibly ranges:
251 ;; foo.c:8.23-9.1: error message
252 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
253 \\([0-9]+\\)\\.\\([0-9]+\\)\
254 -\\([0-9]+\\)\\.\\([0-9]+\\)\
255 :" 1 2 3) ;; When ending points are supported, add line = 4 and col = 5.
256 ;; foo.c:8.23-45: error message
257 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
258 \\([0-9]+\\)\\.\\([0-9]+\\)\
259 -\\([0-9]+\\)\
260 :" 1 2 3) ;; When ending points are supported, add line = 2 and col = 4.
261 ;; foo.c:8-45.3: error message
262 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
263 \\([0-9]+\\)\
264 -\\([0-9]+\\)\\.\\([0-9]+\\)\
265 :" 1 2 nil) ;; When ending points are supported, add line = 2 and col = 4.
266 ;; foo.c:8.23: error message
267 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
268 \\([0-9]+\\)\\.\\([0-9]+\\)\
269 :" 1 2 3)
270 ;; foo.c:8-23: error message
271 ("\\([a-zA-Z][-a-zA-Z._0-9]+\\): ?\
272 \\([0-9]+\\)\
273 -\\([0-9]+\\)\
274 :" 1 2 nil);; When ending points are supported, add line = 3.
276 ;; Microsoft C/C++:
277 ;; keyboard.c(537) : warning C4005: 'min' : macro redefinition
278 ;; d:\tmp\test.c(23) : error C2143: syntax error : missing ';' before 'if'
279 ;; This used to be less selective and allow characters other than
280 ;; parens around the line number, but that caused confusion for
281 ;; GNU-style error messages.
282 ;; This used to reject spaces and dashes in file names,
283 ;; but they are valid now; so I made it more strict about the error
284 ;; message that follows.
285 ("\\(\\([a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \
286 : \\(error\\|warning\\) C[0-9]+:" 1 3)
288 ;; Borland C++, C++Builder:
289 ;; Error ping.c 15: Unable to open include file 'sys/types.h'
290 ;; Warning ping.c 68: Call to function 'func' with no prototype
291 ;; Error E2010 ping.c 15: Unable to open include file 'sys/types.h'
292 ;; Warning W1022 ping.c 68: Call to function 'func' with no prototype
293 ("\\(Error\\|Warning\\) \\(\\([FEW][0-9]+\\) \\)?\
294 \\([a-zA-Z]?:?[^:( \t\n]+\\)\
295 \\([0-9]+\\)\\([) \t]\\|:[^0-9\n]\\)" 4 5)
297 ;; Valgrind (memory debugger for x86 GNU/Linux):
298 ;; ==1332== at 0x8008621: main (vtest.c:180)
299 ;; Currently this regexp only matches the first error.
300 ;; Thanks to Hans Petter Jansson <hpj@ximian.com> for his regexp wisdom.
301 ("^==[0-9]+==[^(]+\(([^:]+):([0-9]+)" 1 2)
303 ;; 4.3BSD lint pass 2
304 ;; strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8)
305 (".*[ \t:]\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(](+[ \t]*\\([0-9]+\\))[:) \t]*$"
306 1 2)
308 ;; 4.3BSD lint pass 3
309 ;; bloofle defined( /users/wolfgang/foo.c(4) ), but never used
310 ;; This used to be
311 ;; ("[ \t(]+\\([a-zA-Z]?:?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2)
312 ;; which is regexp Impressionism - it matches almost anything!
313 (".*([ \t]*\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2)
315 ;; MIPS lint pass<n>; looks good for SunPro lint also
316 ;; TrimMask (255) in solomon.c may be indistinguishable from TrimMasks (93) in solomon.c due to truncation
317 ("[^\n ]+ (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1)
318 ;; name defined but never used: LinInt in cmap_calc.c(199)
319 (".*in \\([^(\n]+\\)(\\([0-9]+\\))$" 1 2)
321 ;; Ultrix 3.0 f77:
322 ;; fort: Severe: addstf.f, line 82: Missing operator or delimiter symbol
323 ;; Some SGI cc version:
324 ;; cfe: Warning 835: foo.c, line 2: something
325 ("\\(cfe\\|fort\\): [^:\n]*: \\([^ \n]*\\), line \\([0-9]+\\):" 2 3)
326 ;; Error on line 3 of t.f: Execution error unclassifiable statement
327 ;; Unknown who does this:
328 ;; Line 45 of "foo.c": bloofle undefined
329 ;; Absoft FORTRAN 77 Compiler 3.1.3
330 ;; error on line 19 of fplot.f: spelling error?
331 ;; warning on line 17 of fplot.f: data type is undefined for variable d
332 ("\\(.* on \\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\
333 of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
335 ;; Apollo cc, 4.3BSD fc:
336 ;; "foo.f", line 3: Error: syntax error near end of statement
337 ;; IBM RS6000:
338 ;; "vvouch.c", line 19.5: 1506-046 (S) Syntax error.
339 ;; Microtec mcc68k:
340 ;; "foo.c", line 32 pos 1; (E) syntax error; unexpected symbol: "lossage"
341 ;; GNAT (as of July 94):
342 ;; "foo.adb", line 2(11): warning: file name does not match ...
343 ;; IBM AIX xlc compiler:
344 ;; "src/swapping.c", line 30.34: 1506-342 (W) "/*" detected in comment.
345 (".*\"\\([^,\" \n\t]+\\)\", lines? \
346 \\([0-9]+\\)\\([\(.]\\([0-9]+\\)\)?\\)?[:., (-]" 1 2 4)
348 ;; Python:
349 ;; File "foobar.py", line 5, blah blah
350 ("^File \"\\([^,\" \n\t]+\\)\", line \\([0-9]+\\)," 1 2)
352 ;; Caml compiler:
353 ;; File "foobar.ml", lines 5-8, characters 20-155: blah blah
354 ("^File \"\\([^,\" \n\t]+\\)\", lines? \\([0-9]+\\)[-0-9]*, characters? \\([0-9]+\\)" 1 2 3)
356 ;; MIPS RISC CC - the one distributed with Ultrix:
357 ;; ccom: Error: foo.c, line 2: syntax error
358 ;; DEC AXP OSF/1 cc
359 ;; /usr/lib/cmplrs/cc/cfe: Error: foo.c: 1: blah blah
360 ("[a-z0-9/]+: \\([eE]rror\\|[wW]arning\\): \\([^,\" \n\t]+\\)[,:] \\(line \\)?\\([0-9]+\\):" 2 4)
362 ;; IBM AIX PS/2 C version 1.1:
363 ;; ****** Error number 140 in line 8 of file errors.c ******
364 (".*in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
365 ;; IBM AIX lint is too painful to do right this way. File name
366 ;; prefixes entire sections rather than being on each line.
368 ;; SPARCcompiler Pascal:
369 ;; 20 linjer : array[1..4] of linje;
370 ;; e 18480-----------^--- Inserted ';'
371 ;; and
372 ;; E 18520 line 61 - 0 is undefined
373 ;; These messages don't contain a file name. Instead the compiler gives
374 ;; a message whenever the file being compiled is changed.
375 (" +\\([0-9]+\\) +.*\n[ew] [0-9]+-+" nil 1)
376 ("[Ew] +[0-9]+ line \\([0-9]+\\) - " nil 1)
378 ;; Lucid Compiler, lcc 3.x
379 ;; E, file.cc(35,52) Illegal operation on pointers
380 ("[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3)
382 ;; This seems to be superfluous because the first pattern matches it.
383 ;; ;; GNU messages with program name and optional column number.
384 ;; ("[a-zA-Z]?:?[^0-9 \n\t:]+[^ \n\t:]*:[ \t]*\\([^ \n\t:]+\\):\
385 ;;\\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4)
387 ;; Cray C compiler error messages
388 ("\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \
389 \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5)
391 ;; IBM C/C++ Tools 2.01:
392 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced.
393 ;; foo.c(3:8) : warning EDC0833: Implicit return statement encountered.
394 ;; foo.c(5:5) : error EDC0350: Syntax error.
395 ("\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
397 ;; IAR Systems C Compiler:
398 ;; "foo.c",3 Error[32]: Error message
399 ;; "foo.c",3 Warning[32]: Error message
400 ("\"\\(.*\\)\",\\([0-9]+\\)\\s-+\\(Error\\|Warning\\)\\[[0-9]+\\]:" 1 2)
402 ;; Sun ada (VADS, Solaris):
403 ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
404 ("\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
406 ;; Perl -w:
407 ;; syntax error at automake line 922, near "':'"
408 ;; Perl debugging traces
409 ;; store::odrecall('File_A', 'x2') called at store.pm line 90
410 (".* at \\([^ \n]+\\) line \\([0-9]+\\)[,.\n]" 1 2)
412 ;; Oracle pro*c:
413 ;; Semantic error at line 528, column 5, file erosacqdb.pc:
414 ("Semantic error at line \\([0-9]+\\), column \\([0-9]+\\), file \\(.*\\):"
415 3 1 2)
417 ;; EPC F90 compiler:
418 ;; Error 24 at (2:progran.f90) : syntax error
419 ("Error [0-9]+ at (\\([0-9]*\\):\\([^)\n]+\\))" 2 1)
421 ;; SGI IRIX MipsPro 7.3 compilers:
422 ;; cc-1070 cc: ERROR File = linkl.c, Line = 38
423 (".*: ERROR File = \\(.+\\), Line = \\([0-9]+\\)" 1 2)
424 (".*: WARNING File = \\(.+\\), Line = \\([0-9]+\\)" 1 2)
426 ;; Sun F90 error messages:
427 ;; cf90-113 f90comp: ERROR NSE, File = Hoved.f90, Line = 16, Column = 3
428 (".* ERROR [a-zA-Z0-9 ]+, File = \\(.+\\), Line = \\([0-9]+\\), Column = \\([0-9]+\\)"
429 1 2 3)
431 ;; RXP - GPL XML validator at http://www.cogsci.ed.ac.uk/~richard/rxp.html:
432 ;; Error: Mismatched end tag: expected </geroup>, got </group>
433 ;; in unnamed entity at line 71 char 8 of file:///home/reto/test/group.xml
434 ("Error:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)"
435 3 1 2)
436 ;; Warning: Start tag for undeclared element geroup
437 ;; in unnamed entity at line 4 char 8 of file:///home/reto/test/group.xml
438 ("Warning:.*\n.* line \\([0-9]+\\) char \\([0-9]+\\) of file://\\(.+\\)"
439 3 1 2)
442 "Alist that specifies how to match errors in compiler output.
443 Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])
444 If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and
445 the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is
446 given, the COLUMN-IDX'th subexpression gives the column number on that line.
447 If any FILE-FORMAT is given, each is a format string to produce a file name to
448 try; %s in the string is replaced by the text matching the FILE-IDX'th
449 subexpression.")
451 (defvar compilation-enter-directory-regexp-alist
453 ;; Matches lines printed by the `-w' option of GNU Make.
454 (".*: Entering directory `\\(.*\\)'$" 1)
455 ;; Matches lines made by Emacs byte compiler.
456 ("^Entering directory `\\(.*\\)'$" 1)
458 "Alist specifying how to match lines that indicate a new current directory.
459 Note that the match is done at the beginning of lines.
460 Each elt has the form (REGEXP IDX).
461 If REGEXP matches, the IDX'th subexpression gives the directory name.
463 The default value matches lines printed by the `-w' option of GNU Make.")
465 (defvar compilation-leave-directory-regexp-alist
467 ;; Matches lines printed by the `-w' option of GNU Make.
468 (".*: Leaving directory `\\(.*\\)'$" 1)
469 ;; Matches lines made by Emacs byte compiler.
470 ("^Leaving directory `\\(.*\\)'$" 1)
472 "Alist specifying how to match lines that indicate restoring current directory.
473 Note that the match is done at the beginning of lines.
474 Each elt has the form (REGEXP IDX).
475 If REGEXP matches, the IDX'th subexpression gives the name of the directory
476 being moved from. If IDX is nil, the last directory entered \(by a line
477 matching `compilation-enter-directory-regexp-alist'\) is assumed.
479 The default value matches lines printed by the `-w' option of GNU Make.")
481 (defvar compilation-file-regexp-alist
483 ;; This matches entries with date time year file-name: like
484 ;; Thu May 14 10:46:12 1992 mom3.p:
485 ("\\w\\w\\w \\w\\w\\w +[0-9]+ [0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9][0-9][0-9][0-9] \\(.*\\):$" 1)
487 "Alist specifying how to match lines that indicate a new current file.
488 Note that the match is done at the beginning of lines.
489 Each elt has the form (REGEXP IDX).
490 If REGEXP matches, the IDX'th subexpression gives the file name. This is
491 used with compilers that don't indicate file name in every error message.")
493 ;; There is no generally useful regexp that will match non messages, but
494 ;; in special cases there might be one. The lines that are not matched by
495 ;; a regexp take much longer time than the ones that are recognized so if
496 ;; you have same regexeps here, parsing is faster.
497 (defvar compilation-nomessage-regexp-alist
500 "Alist specifying how to match lines that have no message.
501 Note that the match is done at the beginning of lines.
502 Each elt has the form (REGEXP). This alist is by default empty, but if
503 you have some good regexps here, the parsing of messages will be faster.")
505 (defcustom compilation-error-screen-columns t
506 "*If non-nil, column numbers in error messages are screen columns.
507 Otherwise they are interpreted as character positions, with
508 each character occupying one column.
509 The default is to use screen columns, which requires that the compilation
510 program and Emacs agree about the display width of the characters,
511 especially the TAB character."
512 :type 'boolean
513 :group 'compilation
514 :version "20.4")
516 (defcustom compilation-read-command t
517 "*Non-nil means \\[compile] reads the compilation command to use.
518 Otherwise, \\[compile] just uses the value of `compile-command'."
519 :type 'boolean
520 :group 'compilation)
522 ;;;###autoload
523 (defcustom compilation-ask-about-save t
524 "*Non-nil means \\[compile] asks which buffers to save before compiling.
525 Otherwise, it saves all modified buffers without asking."
526 :type 'boolean
527 :group 'compilation)
529 ;; Note: the character class after the optional drive letter does not
530 ;; include a space to support file names with blanks.
531 (defvar grep-regexp-alist
532 '(("\\([a-zA-Z]?:?[^:(\t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2))
533 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
535 (defvar grep-program
536 ;; Currently zgrep has trouble. It runs egrep instead of grep,
537 ;; and it doesn't pass along long options right.
538 "grep"
539 ;; (if (equal (condition-case nil ; in case "zgrep" isn't in exec-path
540 ;; (call-process "zgrep" nil nil nil
541 ;; "foo" null-device)
542 ;; (error nil))
543 ;; 1)
544 ;; "zgrep"
545 ;; "grep")
546 "The default grep program for `grep-command' and `grep-find-command'.
547 This variable's value takes effect when `grep-compute-defaults' is called.")
549 (defvar find-program "find"
550 "The default find program for `grep-find-command'.
551 This variable's value takes effect when `grep-compute-defaults' is called.")
553 (defvar grep-find-use-xargs nil
554 "Whether \\[grep-find] uses the `xargs' utility by default.
556 If nil, it uses `find -exec'; if `gnu', it uses `find -print0' and `xargs -0';
557 if not nil and not `gnu', it uses `find -print' and `xargs'.
559 This variable's value takes effect when `grep-compute-defaults' is called.")
561 ;;;###autoload
562 (defcustom compilation-search-path '(nil)
563 "*List of directories to search for source files named in error messages.
564 Elements should be directory names, not file names of directories.
565 nil as an element means to try the default directory."
566 :type '(repeat (choice (const :tag "Default" nil)
567 (string :tag "Directory")))
568 :group 'compilation)
570 (defcustom compile-command "make -k "
571 "*Last shell command used to do a compilation; default for next compilation.
573 Sometimes it is useful for files to supply local values for this variable.
574 You might also use mode hooks to specify it in certain modes, like this:
576 (add-hook 'c-mode-hook
577 (lambda ()
578 (unless (or (file-exists-p \"makefile\")
579 (file-exists-p \"Makefile\"))
580 (set (make-local-variable 'compile-command)
581 (concat \"make -k \"
582 (file-name-sans-extension buffer-file-name))))))"
583 :type 'string
584 :group 'compilation)
586 (defvar compilation-directory-stack nil
587 "Stack of previous directories for `compilation-leave-directory-regexp'.
588 The last element is the directory the compilation was started in.")
590 (defvar compilation-exit-message-function nil "\
591 If non-nil, called when a compilation process dies to return a status message.
592 This should be a function of three arguments: process status, exit status,
593 and exit message; it returns a cons (MESSAGE . MODELINE) of the strings to
594 write into the compilation buffer, and to put in its mode line.")
596 ;; History of compile commands.
597 (defvar compile-history nil)
598 ;; History of grep commands.
599 (defvar grep-history nil)
600 (defvar grep-find-history nil)
602 (defun compilation-mode-font-lock-keywords ()
603 "Return expressions to highlight in Compilation mode."
604 (nconc
606 ;; Compiler warning/error lines.
607 (mapcar (function
608 (lambda (item)
609 ;; Prepend "^", adjusting FILE-IDX and LINE-IDX accordingly.
610 (let ((file-idx (nth 1 item))
611 (line-idx (nth 2 item))
612 (col-idx (nth 3 item))
613 keyword)
614 (when (numberp col-idx)
615 (setq keyword
616 (cons (list (1+ col-idx) 'font-lock-type-face nil t)
617 keyword)))
618 (when (numberp line-idx)
619 (setq keyword
620 (cons (list (1+ line-idx) 'font-lock-variable-name-face)
621 keyword)))
622 (when (numberp file-idx)
623 (setq keyword
624 (cons (list (1+ file-idx) 'font-lock-warning-face)
625 keyword)))
626 (cons (concat "^\\(" (nth 0 item) "\\)") keyword))))
627 compilation-error-regexp-alist)
628 (list
630 ;; Compiler output lines. Recognize `make[n]:' lines too.
631 '("^\\([A-Za-z_0-9/\.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ \t]*:"
632 (1 font-lock-function-name-face) (3 font-lock-comment-face nil t)))
635 ;;;###autoload
636 (defun compile (command)
637 "Compile the program including the current buffer. Default: run `make'.
638 Runs COMMAND, a shell command, in a separate process asynchronously
639 with output going to the buffer `*compilation*'.
641 You can then use the command \\[next-error] to find the next error message
642 and move to the source code that caused it.
644 Interactively, prompts for the command if `compilation-read-command' is
645 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
647 To run more than one compilation at once, start one and rename the
648 \`*compilation*' buffer to some other name with \\[rename-buffer].
649 Then start the next one.
651 The name used for the buffer is actually whatever is returned by
652 the function in `compilation-buffer-name-function', so you can set that
653 to a function that generates a unique name."
654 (interactive
655 (if (or compilation-read-command current-prefix-arg)
656 (list (read-from-minibuffer "Compile command: "
657 (eval compile-command) nil nil
658 '(compile-history . 1)))
659 (list (eval compile-command))))
660 (unless (equal command (eval compile-command))
661 (setq compile-command command))
662 (save-some-buffers (not compilation-ask-about-save) nil)
663 (compile-internal command "No more errors"))
665 ;; run compile with the default command line
666 (defun recompile ()
667 "Re-compile the program including the current buffer.
668 If this is run in a compilation-mode buffer, re-use the arguments from the
669 original use. Otherwise, it recompiles using `compile-command'."
670 (interactive)
671 (save-some-buffers (not compilation-ask-about-save) nil)
672 (apply 'compile-internal (or compilation-arguments
673 `(,(eval compile-command) "No more errors"))))
675 (defun grep-process-setup ()
676 "Set up `compilation-exit-message-function' for `grep'."
677 (set (make-local-variable 'compilation-exit-message-function)
678 (lambda (status code msg)
679 (if (eq status 'exit)
680 (cond ((zerop code)
681 '("finished (matches found)\n" . "matched"))
682 ((= code 1)
683 '("finished with no matches found\n" . "no match"))
685 (cons msg code)))
686 (cons msg code)))))
688 (defun grep-compute-defaults ()
689 (unless (or (not grep-use-null-device) (eq grep-use-null-device t))
690 (setq grep-use-null-device
691 (with-temp-buffer
692 (let ((hello-file (expand-file-name "HELLO" data-directory)))
693 (not
694 (and (equal (condition-case nil
695 (if grep-command
696 ;; `grep-command' is already set, so
697 ;; use that for testing.
698 (call-process-shell-command
699 grep-command nil t nil
700 "^English" hello-file)
701 ;; otherwise use `grep-program'
702 (call-process grep-program nil t nil
703 "-nH" "^English" hello-file))
704 (error nil))
706 (progn
707 (goto-char (point-min))
708 (looking-at
709 (concat (regexp-quote hello-file)
710 ":[0-9]+:English")))))))))
711 (unless grep-command
712 (setq grep-command
713 (let ((required-options (if grep-use-null-device "-n" "-nH")))
714 (if (equal (condition-case nil ; in case "grep" isn't in exec-path
715 (call-process grep-program nil nil nil
716 "-e" "foo" null-device)
717 (error nil))
719 (format "%s %s -e " grep-program required-options)
720 (format "%s %s " grep-program required-options)))))
721 (unless grep-find-use-xargs
722 (setq grep-find-use-xargs
723 (if (and
724 (equal (call-process "find" nil nil nil
725 null-device "-print0")
727 (equal (call-process "xargs" nil nil nil
728 "-0" "-e" "echo")
730 'gnu)))
731 (unless grep-find-command
732 (setq grep-find-command
733 (cond ((eq grep-find-use-xargs 'gnu)
734 (format "%s . -type f -print0 | xargs -0 -e %s"
735 find-program grep-command))
736 (grep-find-use-xargs
737 (format "%s . -type f -print | xargs %s"
738 find-program grep-command))
739 (t (cons (format "%s . -type f -exec %s {} %s \\;"
740 find-program grep-command null-device)
741 (+ 22 (length grep-command)))))))
742 (unless grep-tree-command
743 (setq grep-tree-command
744 (let* ((glen (length grep-program))
745 (gcmd (concat grep-program " <C>" (substring grep-command glen))))
746 (cond ((eq grep-find-use-xargs 'gnu)
747 (format "%s <D> <X> -type f <F> -print0 | xargs -0 -e %s <R>"
748 find-program gcmd))
749 (grep-find-use-xargs
750 (format "%s <D> <X> -type f <F> -print | xargs %s <R>"
751 find-program gcmd))
752 (t (format "%s <D> <X> -type f <F> -exec %s <R> {} %s \\;"
753 find-program gcmd null-device)))))))
755 (defun grep-default-command ()
756 (let ((tag-default
757 (funcall (or find-tag-default-function
758 (get major-mode 'find-tag-default-function)
759 ;; We use grep-tag-default instead of
760 ;; find-tag-default, to avoid loading etags.
761 'grep-tag-default)))
762 (sh-arg-re "\\(\\(?:\"\\(?:[^\"]\\|\\\\\"\\)+\"\\|'[^']+'\\|[^\"' \t\n]\\)+\\)")
763 (grep-default (or (car grep-history) grep-command)))
764 ;; Replace the thing matching for with that around cursor.
765 (when (or (string-match
766 (concat "[^ ]+\\s +\\(?:-[^ ]+\\s +\\)*"
767 sh-arg-re "\\(\\s +\\(\\S +\\)\\)?")
768 grep-default)
769 ;; If the string is not yet complete.
770 (string-match "\\(\\)\\'" grep-default))
771 (unless (or (not (stringp buffer-file-name))
772 (when (match-beginning 2)
773 (save-match-data
774 (string-match
775 (wildcard-to-regexp
776 (file-name-nondirectory
777 (match-string 3 grep-default)))
778 (file-name-nondirectory buffer-file-name)))))
779 (setq grep-default (concat (substring grep-default
780 0 (match-beginning 2))
781 " *."
782 (file-name-extension buffer-file-name))))
783 (replace-match (or tag-default "") t t grep-default 1))))
785 ;;;###autoload
786 (defun grep (command-args)
787 "Run grep, with user-specified args, and collect output in a buffer.
788 While grep runs asynchronously, you can use \\[next-error] (M-x next-error),
789 or \\<compilation-minor-mode-map>\\[compile-goto-error] in the grep \
790 output buffer, to go to the lines
791 where grep found matches.
793 This command uses a special history list for its COMMAND-ARGS, so you can
794 easily repeat a grep command.
796 A prefix argument says to default the argument based upon the current
797 tag the cursor is over, substituting it into the last grep command
798 in the grep command history (or into `grep-command'
799 if that history list is empty)."
800 (interactive
801 (progn
802 (unless (and grep-command
803 (or (not grep-use-null-device) (eq grep-use-null-device t)))
804 (grep-compute-defaults))
805 (let ((default (grep-default-command)))
806 (list (read-from-minibuffer "Run grep (like this): "
807 (if current-prefix-arg
808 default grep-command)
809 nil nil 'grep-history
810 (if current-prefix-arg nil default))))))
812 ;; Setting process-setup-function makes exit-message-function work
813 ;; even when async processes aren't supported.
814 (let* ((compilation-process-setup-function 'grep-process-setup)
815 (buf (compile-internal (if (and grep-use-null-device null-device)
816 (concat command-args " " null-device)
817 command-args)
818 "No more grep hits" "grep"
819 ;; Give it a simpler regexp to match.
820 nil grep-regexp-alist)))))
822 ;; This is a copy of find-tag-default from etags.el.
823 (defun grep-tag-default ()
824 (save-excursion
825 (while (looking-at "\\sw\\|\\s_")
826 (forward-char 1))
827 (when (or (re-search-backward "\\sw\\|\\s_"
828 (save-excursion (beginning-of-line) (point))
830 (re-search-forward "\\(\\sw\\|\\s_\\)+"
831 (save-excursion (end-of-line) (point))
833 (goto-char (match-end 0))
834 (buffer-substring (point)
835 (progn (forward-sexp -1)
836 (while (looking-at "\\s'")
837 (forward-char 1))
838 (point))))))
840 ;;;###autoload
841 (defun grep-find (command-args)
842 "Run grep via find, with user-specified args COMMAND-ARGS.
843 Collect output in a buffer.
844 While find runs asynchronously, you can use the \\[next-error] command
845 to find the text that grep hits refer to.
847 This command uses a special history list for its arguments, so you can
848 easily repeat a find command."
849 (interactive
850 (progn
851 (unless grep-find-command
852 (grep-compute-defaults))
853 (list (read-from-minibuffer "Run find (like this): "
854 grep-find-command nil nil
855 'grep-find-history))))
856 (let ((null-device nil)) ; see grep
857 (grep command-args)))
859 (defun grep-expand-command-macros (command &optional regexp files dir excl case-fold)
860 "Patch grep COMMAND replacing <D>, etc."
861 (setq command
862 (replace-regexp-in-string "<D>"
863 (or dir ".") command t t))
864 (setq command
865 (replace-regexp-in-string "<X>"
866 (or excl "") command t t))
867 (setq command
868 (replace-regexp-in-string "<F>"
869 (or files "") command t t))
870 (setq command
871 (replace-regexp-in-string "<C>"
872 (if case-fold "-i" "") command t t))
873 (setq command
874 (replace-regexp-in-string "<R>"
875 (or regexp "") command t t))
876 command)
878 (defvar grep-tree-last-regexp "")
879 (defvar grep-tree-last-files (car (car grep-tree-files-aliases)))
881 ;;;###autoload
882 (defun grep-tree (regexp files dir &optional subdirs)
883 "Grep for REGEXP in FILES in directory tree rooted at DIR.
884 Collect output in a buffer.
885 Interactively, prompt separately for each search parameter.
886 With prefix arg, reuse previous REGEXP.
887 The search is limited to file names matching shell pattern FILES.
888 FILES may use abbreviations defined in `grep-tree-files-aliases', e.g.
889 entering `ch' is equivalent to `*.[ch]'.
891 While find runs asynchronously, you can use the \\[next-error] command
892 to find the text that grep hits refer to.
894 This command uses a special history list for its arguments, so you can
895 easily repeat a find command.
897 When used non-interactively, optional arg SUBDIRS limits the search to
898 those sub directories of DIR."
899 (interactive
900 (let* ((regexp
901 (if current-prefix-arg
902 grep-tree-last-regexp
903 (let* ((default (current-word))
904 (spec (read-string
905 (concat "Search for"
906 (if (and default (> (length default) 0))
907 (format " (default %s): " default) ": ")))))
908 (if (equal spec "") default spec))))
909 (files
910 (read-string (concat "Search for \"" regexp "\" in files (default " grep-tree-last-files "): ")))
911 (dir
912 (read-directory-name "Base directory: " nil default-directory t)))
913 (list regexp files dir)))
914 (unless grep-tree-command
915 (grep-compute-defaults))
916 (unless (and (stringp files) (> (length files) 0))
917 (setq files grep-tree-last-files))
918 (when files
919 (setq grep-tree-last-files files)
920 (let ((mf (assoc files grep-tree-files-aliases)))
921 (if mf
922 (setq files (cdr mf)))))
923 (let ((command-args (grep-expand-command-macros
924 grep-tree-command
925 (setq grep-tree-last-regexp regexp)
926 (and files (concat "-name '" files "'"))
927 (if subdirs
928 (if (stringp subdirs)
929 subdirs
930 (mapconcat 'identity subdirs " "))
931 nil) ;; we change default-directory to dir
932 (and grep-tree-ignore-CVS-directories "-path '*/CVS' -prune -o ")
933 grep-tree-ignore-case))
934 (default-directory dir)
935 (null-device nil)) ; see grep
936 (grep command-args)))
938 (defcustom compilation-scroll-output nil
939 "*Non-nil to scroll the *compilation* buffer window as output appears.
941 Setting it causes the compilation-mode commands to put point at the
942 end of their output window so that the end of the output is always
943 visible rather than the begining."
944 :type 'boolean
945 :version "20.3"
946 :group 'compilation)
949 (defun compilation-buffer-name (mode-name name-function)
950 "Return the name of a compilation buffer to use.
951 If NAME-FUNCTION is non-nil, call it with one argument MODE-NAME
952 to determine the buffer name.
953 Likewise if `compilation-buffer-name-function' is non-nil.
954 If current buffer is in Compilation mode for the same mode name
955 return the name of the current buffer, so that it gets reused.
956 Otherwise, construct a buffer name from MODE-NAME."
957 (cond (name-function
958 (funcall name-function mode-name))
959 (compilation-buffer-name-function
960 (funcall compilation-buffer-name-function mode-name))
961 ((and (eq major-mode 'compilation-mode)
962 (equal mode-name (nth 2 compilation-arguments)))
963 (buffer-name))
965 (concat "*" (downcase mode-name) "*"))))
968 (defun compile-internal (command error-message
969 &optional name-of-mode parser
970 error-regexp-alist name-function
971 enter-regexp-alist leave-regexp-alist
972 file-regexp-alist nomessage-regexp-alist
973 no-async)
974 "Run compilation command COMMAND (low level interface).
975 ERROR-MESSAGE is a string to print if the user asks to see another error
976 and there are no more errors. The rest of the arguments, 3-10 are optional.
977 For them nil means use the default.
978 NAME-OF-MODE is the name to display as the major mode in the compilation
979 buffer. PARSER is the error parser function. ERROR-REGEXP-ALIST is the error
980 message regexp alist to use. NAME-FUNCTION is a function called to name the
981 buffer. ENTER-REGEXP-ALIST is the enter directory message regexp alist to use.
982 LEAVE-REGEXP-ALIST is the leave directory message regexp alist to use.
983 FILE-REGEXP-ALIST is the change current file message regexp alist to use.
984 NOMESSAGE-REGEXP-ALIST is the nomessage regexp alist to use.
985 The defaults for these variables are the global values of
986 \`compilation-parse-errors-function', `compilation-error-regexp-alist',
987 \`compilation-buffer-name-function', `compilation-enter-directory-regexp-alist',
988 \`compilation-leave-directory-regexp-alist', `compilation-file-regexp-alist',
989 \ and `compilation-nomessage-regexp-alist', respectively.
990 For arg 7-10 a value t means an empty alist.
992 If NO-ASYNC is non-nil, start the compilation process synchronously.
994 Returns the compilation buffer created."
995 (unless no-async
996 (setq no-async (not (fboundp 'start-process))))
997 (let (outbuf)
998 (save-excursion
999 (or name-of-mode
1000 (setq name-of-mode "Compilation"))
1001 (setq outbuf
1002 (get-buffer-create (compilation-buffer-name name-of-mode
1003 name-function)))
1004 (set-buffer outbuf)
1005 (let ((comp-proc (get-buffer-process (current-buffer))))
1006 (if comp-proc
1007 (if (or (not (eq (process-status comp-proc) 'run))
1008 (yes-or-no-p
1009 (format "A %s process is running; kill it? "
1010 name-of-mode)))
1011 (condition-case ()
1012 (progn
1013 (interrupt-process comp-proc)
1014 (sit-for 1)
1015 (delete-process comp-proc))
1016 (error nil))
1017 (error "Cannot have two processes in `%s' at once"
1018 (buffer-name))
1020 ;; In case the compilation buffer is current, make sure we get the global
1021 ;; values of compilation-error-regexp-alist, etc.
1022 (kill-all-local-variables))
1023 (or error-regexp-alist
1024 (setq error-regexp-alist compilation-error-regexp-alist))
1025 (or enter-regexp-alist
1026 (setq enter-regexp-alist compilation-enter-directory-regexp-alist))
1027 (or leave-regexp-alist
1028 (setq leave-regexp-alist compilation-leave-directory-regexp-alist))
1029 (or file-regexp-alist
1030 (setq file-regexp-alist compilation-file-regexp-alist))
1031 (or nomessage-regexp-alist
1032 (setq nomessage-regexp-alist compilation-nomessage-regexp-alist))
1033 (or parser (setq parser compilation-parse-errors-function))
1034 (let ((thisdir default-directory)
1035 outwin)
1036 (save-excursion
1037 ;; Clear out the compilation buffer and make it writable.
1038 ;; Change its default-directory to the directory where the compilation
1039 ;; will happen, and insert a `cd' command to indicate this.
1040 (set-buffer outbuf)
1041 (setq buffer-read-only nil)
1042 (buffer-disable-undo (current-buffer))
1043 (erase-buffer)
1044 (buffer-enable-undo (current-buffer))
1045 (setq default-directory thisdir)
1046 (insert "cd " thisdir "\n" command "\n")
1047 (set-buffer-modified-p nil))
1048 ;; If we're already in the compilation buffer, go to the end
1049 ;; of the buffer, so point will track the compilation output.
1050 (if (eq outbuf (current-buffer))
1051 (goto-char (point-max)))
1052 ;; Pop up the compilation buffer.
1053 (setq outwin (display-buffer outbuf nil t))
1054 (with-current-buffer outbuf
1055 (compilation-mode name-of-mode)
1056 ;; In what way is it non-ergonomic ? -stef
1057 ;; (toggle-read-only 1) ;;; Non-ergonomic.
1058 (set (make-local-variable 'compilation-parse-errors-function) parser)
1059 (set (make-local-variable 'compilation-error-message) error-message)
1060 (set (make-local-variable 'compilation-error-regexp-alist)
1061 error-regexp-alist)
1062 (set (make-local-variable 'compilation-enter-directory-regexp-alist)
1063 enter-regexp-alist)
1064 (set (make-local-variable 'compilation-leave-directory-regexp-alist)
1065 leave-regexp-alist)
1066 (set (make-local-variable 'compilation-file-regexp-alist)
1067 file-regexp-alist)
1068 (set (make-local-variable 'compilation-nomessage-regexp-alist)
1069 nomessage-regexp-alist)
1070 (set (make-local-variable 'compilation-arguments)
1071 (list command error-message
1072 name-of-mode parser
1073 error-regexp-alist name-function
1074 enter-regexp-alist leave-regexp-alist
1075 file-regexp-alist nomessage-regexp-alist))
1076 ;; This proves a good idea if the buffer's going to scroll
1077 ;; with lazy-lock on.
1078 (set (make-local-variable 'lazy-lock-defer-on-scrolling) t)
1079 (setq default-directory thisdir
1080 compilation-directory-stack (list default-directory))
1081 (set-window-start outwin (point-min))
1082 (or (eq outwin (selected-window))
1083 (set-window-point outwin (point-min)))
1084 (compilation-set-window-height outwin)
1085 (if compilation-process-setup-function
1086 (funcall compilation-process-setup-function))
1087 ;; Start the compilation.
1088 (if (not no-async)
1089 (let* ((process-environment
1090 (append
1091 (if (and (boundp 'system-uses-terminfo)
1092 system-uses-terminfo)
1093 (list "TERM=dumb" "TERMCAP="
1094 (format "COLUMNS=%d" (window-width)))
1095 (list "TERM=emacs"
1096 (format "TERMCAP=emacs:co#%d:tc=unknown:"
1097 (window-width))))
1098 ;; Set the EMACS variable, but
1099 ;; don't override users' setting of $EMACS.
1100 (if (getenv "EMACS")
1101 process-environment
1102 (cons "EMACS=t" process-environment))))
1103 (proc (start-process-shell-command (downcase mode-name)
1104 outbuf
1105 command)))
1106 (set-process-sentinel proc 'compilation-sentinel)
1107 (set-process-filter proc 'compilation-filter)
1108 (set-marker (process-mark proc) (point) outbuf)
1109 (setq compilation-in-progress
1110 (cons proc compilation-in-progress)))
1111 ;; No asynchronous processes available.
1112 (message "Executing `%s'..." command)
1113 ;; Fake modeline display as if `start-process' were run.
1114 (setq mode-line-process ":run")
1115 (force-mode-line-update)
1116 (sit-for 0) ; Force redisplay
1117 (let ((status (call-process shell-file-name nil outbuf nil "-c"
1118 command)))
1119 (cond ((numberp status)
1120 (compilation-handle-exit 'exit status
1121 (if (zerop status)
1122 "finished\n"
1123 (format "\
1124 exited abnormally with code %d\n"
1125 status))))
1126 ((stringp status)
1127 (compilation-handle-exit 'signal status
1128 (concat status "\n")))
1130 (compilation-handle-exit 'bizarre status status))))
1131 (message "Executing `%s'...done" command)))
1132 (if compilation-scroll-output
1133 (save-selected-window
1134 (select-window outwin)
1135 (goto-char (point-max)))))
1136 ;; Make it so the next C-x ` will use this buffer.
1137 (setq compilation-last-buffer outbuf)))
1139 (defun compilation-set-window-height (window)
1140 "Set the height of WINDOW according to `compilation-window-height'."
1141 (and compilation-window-height
1142 (= (window-width window) (frame-width (window-frame window)))
1143 ;; If window is alone in its frame, aside from a minibuffer,
1144 ;; don't change its height.
1145 (not (eq window (frame-root-window (window-frame window))))
1146 ;; This save-current-buffer prevents us from changing the current
1147 ;; buffer, which might not be the same as the selected window's buffer.
1148 (save-current-buffer
1149 (save-selected-window
1150 (select-window window)
1151 (enlarge-window (- compilation-window-height
1152 (window-height)))))))
1154 (defvar compilation-menu-map
1155 (let ((map (make-sparse-keymap "Errors")))
1156 (define-key map [stop-subjob]
1157 '("Stop Compilation" . kill-compilation))
1158 (define-key map [compilation-mode-separator2]
1159 '("----" . nil))
1160 (define-key map [compilation-mode-first-error]
1161 '("First Error" . first-error))
1162 (define-key map [compilation-mode-previous-error]
1163 '("Previous Error" . previous-error))
1164 (define-key map [compilation-mode-next-error]
1165 '("Next Error" . next-error))
1166 map))
1168 (defvar compilation-minor-mode-map
1169 (let ((map (make-sparse-keymap)))
1170 (define-key map [mouse-2] 'compile-mouse-goto-error)
1171 (define-key map "\C-c\C-c" 'compile-goto-error)
1172 (define-key map "\C-m" 'compile-goto-error)
1173 (define-key map "\C-c\C-k" 'kill-compilation)
1174 (define-key map "\M-n" 'compilation-next-error)
1175 (define-key map "\M-p" 'compilation-previous-error)
1176 (define-key map "\M-{" 'compilation-previous-file)
1177 (define-key map "\M-}" 'compilation-next-file)
1178 ;; Set up the menu-bar
1179 (define-key map [menu-bar compilation]
1180 (cons "Errors" compilation-menu-map))
1181 map)
1182 "Keymap for `compilation-minor-mode'.")
1184 (defvar compilation-shell-minor-mode-map
1185 (let ((map (make-sparse-keymap)))
1186 (define-key map [mouse-2] 'compile-mouse-goto-error)
1187 (define-key map "\M-\C-m" 'compile-goto-error)
1188 (define-key map "\M-\C-n" 'compilation-next-error)
1189 (define-key map "\M-\C-p" 'compilation-previous-error)
1190 (define-key map "\M-{" 'compilation-previous-file)
1191 (define-key map "\M-}" 'compilation-next-file)
1192 ;; Set up the menu-bar
1193 (define-key map [menu-bar compilation]
1194 (cons "Errors" compilation-menu-map))
1195 map)
1196 "Keymap for `compilation-shell-minor-mode'.")
1198 (defvar compilation-mode-map
1199 (let ((map (make-sparse-keymap)))
1200 (set-keymap-parent map compilation-minor-mode-map)
1201 (define-key map " " 'scroll-up)
1202 (define-key map "\^?" 'scroll-down)
1203 ;; Set up the menu-bar
1204 (define-key map [menu-bar compilation]
1205 (cons "Compile" (make-sparse-keymap "Compile")))
1206 (define-key map [menu-bar compilation compilation-separator2]
1207 '("----" . nil))
1208 (define-key map [menu-bar compilation compilation-mode-grep]
1209 '("Search Files (grep)" . grep))
1210 (define-key map [menu-bar compilation compilation-mode-recompile]
1211 '("Recompile" . recompile))
1212 (define-key map [menu-bar compilation compilation-mode-compile]
1213 '("Compile..." . compile))
1214 map)
1215 "Keymap for compilation log buffers.
1216 `compilation-minor-mode-map' is a parent of this.")
1218 (put 'compilation-mode 'mode-class 'special)
1220 ;;;###autoload
1221 (defun compilation-mode (&optional name-of-mode)
1222 "Major mode for compilation log buffers.
1223 \\<compilation-mode-map>To visit the source for a line-numbered error,
1224 move point to the error message line and type \\[compile-goto-error].
1225 To kill the compilation, type \\[kill-compilation].
1227 Runs `compilation-mode-hook' with `run-hooks' (which see)."
1228 (interactive)
1229 (kill-all-local-variables)
1230 (use-local-map compilation-mode-map)
1231 (setq major-mode 'compilation-mode
1232 mode-name (or name-of-mode "Compilation"))
1233 (compilation-setup)
1234 (set (make-local-variable 'font-lock-defaults)
1235 '(compilation-mode-font-lock-keywords t))
1236 (set (make-local-variable 'revert-buffer-function)
1237 'compilation-revert-buffer)
1238 (run-hooks 'compilation-mode-hook))
1240 (defun compilation-revert-buffer (ignore-auto noconfirm)
1241 (if buffer-file-name
1242 (let (revert-buffer-function)
1243 (revert-buffer ignore-auto noconfirm preserve-modes))
1244 (if (or noconfirm (yes-or-no-p (format "Restart compilation? ")))
1245 (apply 'compile-internal compilation-arguments))))
1247 (defun compilation-setup ()
1248 "Prepare the buffer for the compilation parsing commands to work."
1249 ;; Make the buffer's mode line show process state.
1250 (setq mode-line-process '(":%s"))
1251 (set (make-local-variable 'compilation-error-list) nil)
1252 (set (make-local-variable 'compilation-old-error-list) nil)
1253 (set (make-local-variable 'compilation-parsing-end) (copy-marker 1))
1254 (set (make-local-variable 'compilation-directory-stack)
1255 (list default-directory))
1256 (make-local-variable 'compilation-error-screen-columns)
1257 (setq compilation-last-buffer (current-buffer)))
1259 ;;;###autoload
1260 (define-minor-mode compilation-shell-minor-mode
1261 "Toggle compilation shell minor mode.
1262 With arg, turn compilation mode on if and only if arg is positive.
1263 In this minor mode, all the error-parsing commands of the
1264 Compilation major mode are available but bound to keys that don't
1265 collide with Shell mode. See `compilation-mode'.
1266 Turning the mode on runs the normal hook `compilation-shell-minor-mode-hook'."
1267 nil " Shell-Compile" nil
1268 :group 'compilation
1269 (let (mode-line-process)
1270 (compilation-setup)))
1272 ;;;###autoload
1273 (define-minor-mode compilation-minor-mode
1274 "Toggle compilation minor mode.
1275 With arg, turn compilation mode on if and only if arg is positive.
1276 In this minor mode, all the error-parsing commands of the
1277 Compilation major mode are available. See `compilation-mode'.
1278 Turning the mode on runs the normal hook `compilation-minor-mode-hook'."
1279 nil " Compilation" nil
1280 :group 'compilation
1281 (let ((mode-line-process))
1282 (compilation-setup)))
1284 (defun compilation-handle-exit (process-status exit-status msg)
1285 "Write msg in the current buffer and hack its mode-line-process."
1286 (let ((buffer-read-only nil)
1287 (status (if compilation-exit-message-function
1288 (funcall compilation-exit-message-function
1289 process-status exit-status msg)
1290 (cons msg exit-status)))
1291 (omax (point-max))
1292 (opoint (point)))
1293 ;; Record where we put the message, so we can ignore it
1294 ;; later on.
1295 (goto-char omax)
1296 (insert ?\n mode-name " " (car status))
1297 (if (and (numberp compilation-window-height)
1298 (zerop compilation-window-height))
1299 (message "%s" (cdr status)))
1300 (if (bolp)
1301 (forward-char -1))
1302 (insert " at " (substring (current-time-string) 0 19))
1303 (goto-char (point-max))
1304 ;; Prevent that message from being recognized as a compilation error.
1305 (add-text-properties omax (point)
1306 (append '(compilation-handle-exit t) nil))
1307 (setq mode-line-process (format ":%s [%s]" process-status (cdr status)))
1308 ;; Force mode line redisplay soon.
1309 (force-mode-line-update)
1310 (if (and opoint (< opoint omax))
1311 (goto-char opoint))
1312 ;; Automatically parse (and mouse-highlight) error messages:
1313 (cond ((eq compile-auto-highlight t)
1314 (compile-reinitialize-errors nil (point-max)))
1315 ((numberp compile-auto-highlight)
1316 (compile-reinitialize-errors nil
1317 (save-excursion
1318 (goto-line compile-auto-highlight)
1319 (point)))))
1320 (if compilation-finish-function
1321 (funcall compilation-finish-function (current-buffer) msg))
1322 (let ((functions compilation-finish-functions))
1323 (while functions
1324 (funcall (car functions) (current-buffer) msg)
1325 (setq functions (cdr functions))))))
1327 ;; Called when compilation process changes state.
1328 (defun compilation-sentinel (proc msg)
1329 "Sentinel for compilation buffers."
1330 (let ((buffer (process-buffer proc)))
1331 (if (memq (process-status proc) '(signal exit))
1332 (progn
1333 (if (null (buffer-name buffer))
1334 ;; buffer killed
1335 (set-process-buffer proc nil)
1336 (let ((obuf (current-buffer)))
1337 ;; save-excursion isn't the right thing if
1338 ;; process-buffer is current-buffer
1339 (unwind-protect
1340 (progn
1341 ;; Write something in the compilation buffer
1342 ;; and hack its mode line.
1343 (set-buffer buffer)
1344 (compilation-handle-exit (process-status proc)
1345 (process-exit-status proc)
1346 msg)
1347 ;; Since the buffer and mode line will show that the
1348 ;; process is dead, we can delete it now. Otherwise it
1349 ;; will stay around until M-x list-processes.
1350 (delete-process proc))
1351 (set-buffer obuf))))
1352 (setq compilation-in-progress (delq proc compilation-in-progress))
1353 ))))
1355 (defun compilation-filter (proc string)
1356 "Process filter for compilation buffers.
1357 Just inserts the text, but uses `insert-before-markers'."
1358 (if (buffer-name (process-buffer proc))
1359 (save-excursion
1360 (set-buffer (process-buffer proc))
1361 (let ((buffer-read-only nil)
1362 (end (marker-position compilation-parsing-end)))
1363 (save-excursion
1364 (goto-char (process-mark proc))
1365 (insert-before-markers string)
1366 (set-marker compilation-parsing-end end) ;don't move it
1367 (run-hooks 'compilation-filter-hook)
1368 ;; this seems redundant since we insert-before-marks -stefan
1369 ;;(set-marker (process-mark proc) (point))
1370 )))))
1372 (defun compile-error-at-point ()
1373 "Return the cdr of `compilation-old-error-list' for error containing point."
1374 (compile-reinitialize-errors nil (point))
1375 (let ((errors compilation-old-error-list))
1376 (while (and errors
1377 (> (point) (car (car errors))))
1378 (setq errors (cdr errors)))
1379 errors))
1381 (defsubst compilation-buffer-p (buffer)
1382 (save-excursion
1383 (set-buffer buffer)
1384 (or compilation-shell-minor-mode compilation-minor-mode
1385 (eq major-mode 'compilation-mode))))
1387 (defun compilation-next-error (n)
1388 "Move point to the next error in the compilation buffer.
1389 Prefix arg N says how many error messages to move forwards (or
1390 backwards, if negative).
1391 Does NOT find the source line like \\[next-error]."
1392 (interactive "p")
1393 (or (compilation-buffer-p (current-buffer))
1394 (error "Not in a compilation buffer"))
1395 (setq compilation-last-buffer (current-buffer))
1397 (let ((errors (compile-error-at-point)))
1399 ;; Move to the error after the one containing point.
1400 (goto-char (car (if (< n 0)
1401 (let ((i 0)
1402 (e compilation-old-error-list))
1403 ;; See how many cdrs away ERRORS is from the start.
1404 (while (not (eq e errors))
1405 (setq i (1+ i)
1406 e (cdr e)))
1407 (if (> (- n) i)
1408 (error "Moved back past first error")
1409 (nth (+ i n) compilation-old-error-list)))
1410 (let ((compilation-error-list (cdr errors)))
1411 (compile-reinitialize-errors nil nil n)
1412 (if compilation-error-list
1413 (nth (1- n) compilation-error-list)
1414 (error "Moved past last error"))))))))
1416 (defun compilation-previous-error (n)
1417 "Move point to the previous error in the compilation buffer.
1418 Prefix arg N says how many error messages to move backwards (or
1419 forwards, if negative).
1420 Does NOT find the source line like \\[next-error]."
1421 (interactive "p")
1422 (compilation-next-error (- n)))
1425 ;; Given an elt of `compilation-error-list', return an object representing
1426 ;; the referenced file which is equal to (but not necessarily eq to) what
1427 ;; this function would return for another error in the same file.
1428 (defsubst compilation-error-filedata (data)
1429 (setq data (cdr data))
1430 (if (markerp data)
1431 (marker-buffer data)
1432 (car data)))
1434 ;; Return a string describing a value from compilation-error-filedata.
1435 ;; This value is not necessarily useful as a file name, but should be
1436 ;; indicative to the user of what file's errors are being referred to.
1437 (defsubst compilation-error-filedata-file-name (filedata)
1438 (if (bufferp filedata)
1439 (buffer-file-name filedata)
1440 (car filedata)))
1442 (defun compilation-next-file (n)
1443 "Move point to the next error for a different file than the current one."
1444 (interactive "p")
1445 (or (compilation-buffer-p (current-buffer))
1446 (error "Not in a compilation buffer"))
1447 (setq compilation-last-buffer (current-buffer))
1449 (let ((reversed (< n 0))
1450 errors filedata)
1452 (if (not reversed)
1453 (setq errors (or (compile-error-at-point)
1454 (error "Moved past last error")))
1456 ;; Get a reversed list of the errors up through the one containing point.
1457 (compile-reinitialize-errors nil (point))
1458 (setq errors (reverse compilation-old-error-list)
1459 n (- n))
1461 ;; Ignore errors after point. (car ERRORS) will be the error
1462 ;; containing point, (cadr ERRORS) the one before it.
1463 (while (and errors
1464 (< (point) (car (car errors))))
1465 (setq errors (cdr errors))))
1467 (while (> n 0)
1468 (setq filedata (compilation-error-filedata (car errors)))
1470 ;; Skip past the following errors for this file.
1471 (while (equal filedata
1472 (compilation-error-filedata
1473 (car (or errors
1474 (if reversed
1475 (error "%s the first erring file"
1476 (compilation-error-filedata-file-name
1477 filedata))
1478 (let ((compilation-error-list nil))
1479 ;; Parse some more.
1480 (compile-reinitialize-errors nil nil 2)
1481 (setq errors compilation-error-list)))
1482 (error "%s is the last erring file"
1483 (compilation-error-filedata-file-name
1484 filedata))))))
1485 (setq errors (cdr errors)))
1487 (setq n (1- n)))
1489 ;; Move to the following error.
1490 (goto-char (car (car (or errors
1491 (if reversed
1492 (error "This is the first erring file")
1493 (let ((compilation-error-list nil))
1494 ;; Parse the last one.
1495 (compile-reinitialize-errors nil nil 1)
1496 compilation-error-list))))))))
1498 (defun compilation-previous-file (n)
1499 "Move point to the previous error for a different file than the current one."
1500 (interactive "p")
1501 (compilation-next-file (- n)))
1503 (defun kill-compilation ()
1504 "Kill the process made by the \\[compile] or \\[grep] commands."
1505 (interactive)
1506 (let ((buffer (compilation-find-buffer)))
1507 (if (get-buffer-process buffer)
1508 (interrupt-process (get-buffer-process buffer))
1509 (error "The compilation process is not running"))))
1511 (defalias 'kill-grep 'kill-compilation)
1513 ;; Parse any new errors in the compilation buffer,
1514 ;; or reparse from the beginning if the user has asked for that.
1515 (defun compile-reinitialize-errors (reparse
1516 &optional limit-search find-at-least)
1517 (save-excursion
1518 (set-buffer compilation-last-buffer)
1519 ;; If we are out of errors, or if user says "reparse",
1520 ;; discard the info we have, to force reparsing.
1521 (if (or (eq compilation-error-list t)
1522 reparse)
1523 (compilation-forget-errors))
1524 (if (and compilation-error-list
1525 (or (not limit-search)
1526 (> compilation-parsing-end limit-search))
1527 (or (not find-at-least)
1528 (>= (length compilation-error-list) find-at-least)))
1529 ;; Since compilation-error-list is non-nil, it points to a specific
1530 ;; error the user wanted. So don't move it around.
1532 ;; This was here for a long time (before my rewrite); why? --roland
1533 ;;(switch-to-buffer compilation-last-buffer)
1534 (set-buffer-modified-p nil)
1535 (if (< compilation-parsing-end (point-max))
1536 ;; compilation-error-list might be non-nil if we have a non-nil
1537 ;; LIMIT-SEARCH or FIND-AT-LEAST arg. In that case its value
1538 ;; records the current position in the error list, and we must
1539 ;; preserve that after reparsing.
1540 (let ((error-list-pos compilation-error-list))
1541 (funcall compilation-parse-errors-function
1542 limit-search
1543 (and find-at-least
1544 ;; We only need enough new parsed errors to reach
1545 ;; FIND-AT-LEAST errors past the current
1546 ;; position.
1547 (- find-at-least (length compilation-error-list))))
1548 ;; Remember the entire list for compilation-forget-errors. If
1549 ;; this is an incremental parse, append to previous list. If
1550 ;; we are parsing anew, compilation-forget-errors cleared
1551 ;; compilation-old-error-list above.
1552 (setq compilation-old-error-list
1553 (nconc compilation-old-error-list compilation-error-list))
1554 (if error-list-pos
1555 ;; We started in the middle of an existing list of parsed
1556 ;; errors before parsing more; restore that position.
1557 (setq compilation-error-list error-list-pos))
1558 ;; Mouse-Highlight (the first line of) each error message when the
1559 ;; mouse pointer moves over it:
1560 (let ((inhibit-read-only t)
1561 (buffer-undo-list t)
1562 deactivate-mark
1563 (buffer-was-modified (buffer-modified-p))
1564 (error-list compilation-error-list))
1565 (while error-list
1566 (save-excursion
1567 (add-text-properties (goto-char (car (car error-list)))
1568 (progn (end-of-line) (point))
1569 '(mouse-face highlight help-echo "\
1570 mouse-2: visit this file and line")))
1571 (setq error-list (cdr error-list)))
1572 (set-buffer-modified-p buffer-was-modified))
1573 )))))
1575 (defun compile-mouse-goto-error (event)
1576 "Visit the source for the error message the mouse is pointing at.
1577 This is like `compile-goto-error' called without prefix arg
1578 at the end of the line."
1579 (interactive "e")
1580 (save-excursion
1581 (set-buffer (window-buffer (posn-window (event-end event))))
1582 (goto-char (posn-point (event-end event)))
1584 (or (compilation-buffer-p (current-buffer))
1585 (error "Not in a compilation buffer"))
1586 (setq compilation-last-buffer (current-buffer))
1587 ;; `compile-reinitialize-errors' needs to see the complete filename
1588 ;; on the line where they clicked the mouse. Since it only looks
1589 ;; up to point, moving point to eol makes sure the filename is
1590 ;; visible to `compile-reinitialize-errors'.
1591 (end-of-line)
1592 (compile-reinitialize-errors nil (point))
1594 ;; Move to bol; the marker for the error on this line will point there.
1595 (beginning-of-line)
1597 ;; Move compilation-error-list to the elt of compilation-old-error-list
1598 ;; we want.
1599 (setq compilation-error-list compilation-old-error-list)
1600 (while (and compilation-error-list
1601 ;; The marker can point nowhere if we previously
1602 ;; failed to find the relevant file. See
1603 ;; compilation-next-error-locus.
1604 (or (null (marker-buffer (caar compilation-error-list)))
1605 (and (> (point) (caar compilation-error-list))
1606 (>= (point)
1607 ;; Don't skip too far: the text between
1608 ;; two errors belongs to the first. This
1609 ;; in-between text might be other errors
1610 ;; on the same line (see
1611 ;; compilation-skip-to-next-location).
1612 (if (null (cdr compilation-error-list))
1613 compilation-parsing-end
1614 (caar (cdr compilation-error-list)))))))
1615 (setq compilation-error-list (cdr compilation-error-list)))
1616 (or compilation-error-list
1617 (error "No error to go to")))
1618 (select-window (posn-window (event-end event)))
1620 (push-mark)
1621 (next-error 1))
1623 (defun compile-goto-error (&optional argp)
1624 "Visit the source for the error message point is on.
1625 Use this command in a compilation log buffer. Sets the mark at point there.
1626 \\[universal-argument] as a prefix arg means to reparse the buffer's error messages first;
1627 other kinds of prefix arguments are ignored."
1628 (interactive "P")
1629 (or (compilation-buffer-p (current-buffer))
1630 (error "Not in a compilation buffer"))
1631 (setq compilation-last-buffer (current-buffer))
1632 (compile-reinitialize-errors (consp argp) (point))
1634 ;; Move to bol; the marker for the error on this line will point there.
1635 (beginning-of-line)
1637 ;; Move compilation-error-list to the elt of compilation-old-error-list
1638 ;; we want.
1639 (setq compilation-error-list compilation-old-error-list)
1640 (while (and compilation-error-list
1641 ;; The marker can point nowhere if we previously
1642 ;; failed to find the relevant file. See
1643 ;; compilation-next-error-locus.
1644 (or (null (marker-buffer (caar compilation-error-list)))
1645 (and (> (point) (caar compilation-error-list))
1646 (>= (point)
1647 ;; Don't skip too far: the text between
1648 ;; two errors belongs to the first. This
1649 ;; in-between text might be other errors
1650 ;; on the same line (see
1651 ;; compilation-skip-to-next-location).
1652 (if (null (cdr compilation-error-list))
1653 compilation-parsing-end
1654 (caar (cdr compilation-error-list)))))))
1655 (setq compilation-error-list (cdr compilation-error-list)))
1657 (push-mark)
1658 (next-error 1))
1660 ;; Return a compilation buffer.
1661 ;; If the current buffer is a compilation buffer, return it.
1662 ;; If compilation-last-buffer is set to a live buffer, use that.
1663 ;; Otherwise, look for a compilation buffer and signal an error
1664 ;; if there are none.
1665 (defun compilation-find-buffer (&optional other-buffer)
1666 (if (and (not other-buffer)
1667 (compilation-buffer-p (current-buffer)))
1668 ;; The current buffer is a compilation buffer.
1669 (current-buffer)
1670 (if (and compilation-last-buffer (buffer-name compilation-last-buffer)
1671 (compilation-buffer-p compilation-last-buffer)
1672 (or (not other-buffer) (not (eq compilation-last-buffer
1673 (current-buffer)))))
1674 compilation-last-buffer
1675 (let ((buffers (buffer-list)))
1676 (while (and buffers (or (not (compilation-buffer-p (car buffers)))
1677 (and other-buffer
1678 (eq (car buffers) (current-buffer)))))
1679 (setq buffers (cdr buffers)))
1680 (if buffers
1681 (car buffers)
1682 (or (and other-buffer
1683 (compilation-buffer-p (current-buffer))
1684 ;; The current buffer is a compilation buffer.
1685 (progn
1686 (if other-buffer
1687 (message "This is the only compilation buffer."))
1688 (current-buffer)))
1689 (error "No compilation started!")))))))
1691 ;;;###autoload
1692 (defun next-error (&optional argp)
1693 "Visit next compilation error message and corresponding source code.
1695 If all the error messages parsed so far have been processed already,
1696 the message buffer is checked for new ones.
1698 A prefix ARGP specifies how many error messages to move;
1699 negative means move back to previous error messages.
1700 Just \\[universal-argument] as a prefix means reparse the error message buffer
1701 and start at the first error.
1703 \\[next-error] normally uses the most recently started compilation or
1704 grep buffer. However, it can operate on any buffer with output from
1705 the \\[compile] and \\[grep] commands, or, more generally, on any
1706 buffer in Compilation mode or with Compilation Minor mode enabled. To
1707 specify use of a particular buffer for error messages, type
1708 \\[next-error] in that buffer.
1710 Once \\[next-error] has chosen the buffer for error messages,
1711 it stays with that buffer until you use it in some other buffer which
1712 uses Compilation mode or Compilation Minor mode.
1714 See variables `compilation-parse-errors-function' and
1715 \`compilation-error-regexp-alist' for customization ideas."
1716 (interactive "P")
1717 (setq compilation-last-buffer (compilation-find-buffer))
1718 (compilation-goto-locus (compilation-next-error-locus
1719 ;; We want to pass a number here only if
1720 ;; we got a numeric prefix arg, not just C-u.
1721 (and (not (consp argp))
1722 (prefix-numeric-value argp))
1723 (consp argp))))
1724 ;;;###autoload (define-key ctl-x-map "`" 'next-error)
1726 (defun previous-error ()
1727 "Visit previous compilation error message and corresponding source code.
1728 This operates on the output from the \\[compile] command."
1729 (interactive)
1730 (next-error -1))
1732 (defun first-error ()
1733 "Reparse the error message buffer and start at the first error.
1734 Visit corresponding source code.
1735 This operates on the output from the \\[compile] command."
1736 (interactive)
1737 (next-error '(4)))
1739 (defvar compilation-skip-to-next-location nil
1740 "*If non-nil, skip multiple error messages for the same source location.")
1742 (defun compilation-next-error-locus (&optional move reparse silent)
1743 "Visit next compilation error and return locus in corresponding source code.
1744 This operates on the output from the \\[compile] command.
1745 If all preparsed error messages have been processed,
1746 the error message buffer is checked for new ones.
1748 Returns a cons (ERROR . SOURCE) of two markers: ERROR is a marker at the
1749 location of the error message in the compilation buffer, and SOURCE is a
1750 marker at the location in the source code indicated by the error message.
1752 Optional first arg MOVE says how many error messages to move forwards (or
1753 backwards, if negative); default is 1. Optional second arg REPARSE, if
1754 non-nil, says to reparse the error message buffer and reset to the first
1755 error (plus MOVE - 1). If optional third argument SILENT is non-nil, return
1756 nil instead of raising an error if there are no more errors.
1758 The current buffer should be the desired compilation output buffer."
1759 (or move (setq move 1))
1760 (compile-reinitialize-errors reparse nil (and (not reparse) (max 0 move)))
1761 (let (next-errors next-error)
1762 (catch 'no-next-error
1763 (save-excursion
1764 (set-buffer compilation-last-buffer)
1765 ;; compilation-error-list points to the "current" error.
1766 (setq next-errors
1767 (if (> move 0)
1768 (nthcdr (1- move)
1769 compilation-error-list)
1770 ;; Zero or negative arg; we need to move back in the list.
1771 (let ((n (1- move))
1772 (i 0)
1773 (e compilation-old-error-list))
1774 ;; See how many cdrs away the current error is from the start.
1775 (while (not (eq e compilation-error-list))
1776 (setq i (1+ i)
1777 e (cdr e)))
1778 (if (> (- n) i)
1779 (error "Moved back past first error")
1780 (nthcdr (+ i n) compilation-old-error-list))))
1781 next-error (car next-errors))
1782 (while
1783 (if (null next-error)
1784 (progn
1785 (and move (/= move 1)
1786 (error (if (> move 0)
1787 "Moved past last error")
1788 "Moved back past first error"))
1789 ;; Forget existing error messages if compilation has finished.
1790 (if (not (and (get-buffer-process (current-buffer))
1791 (eq (process-status
1792 (get-buffer-process
1793 (current-buffer)))
1794 'run)))
1795 (compilation-forget-errors))
1796 (if silent
1797 (throw 'no-next-error nil)
1798 (error (concat compilation-error-message
1799 (and (get-buffer-process (current-buffer))
1800 (eq (process-status
1801 (get-buffer-process
1802 (current-buffer)))
1803 'run)
1804 " yet")))))
1805 (setq compilation-error-list (cdr next-errors))
1806 (if (null (cdr next-error))
1807 ;; This error is boring. Go to the next.
1809 (or (markerp (cdr next-error))
1810 ;; This error has a filename/lineno pair.
1811 ;; Find the file and turn it into a marker.
1812 (let* ((fileinfo (car (cdr next-error)))
1813 (buffer (apply 'compilation-find-file
1814 (car next-error) fileinfo)))
1815 (if (null buffer)
1816 ;; We can't find this error's file.
1817 ;; Remove all errors in the same file.
1818 (progn
1819 (setq next-errors compilation-old-error-list)
1820 (while next-errors
1821 (and (consp (cdr (car next-errors)))
1822 (equal (car (cdr (car next-errors)))
1823 fileinfo)
1824 (progn
1825 (set-marker (car (car next-errors)) nil)
1826 (setcdr (car next-errors) nil)))
1827 (setq next-errors (cdr next-errors)))
1828 ;; Look for the next error.
1830 ;; We found the file. Get a marker for this error.
1831 ;; compilation-old-error-list and
1832 ;; compilation-error-screen-columns are buffer-local
1833 ;; so we must be careful to extract their value
1834 ;; before switching to the source file buffer.
1835 (let ((errors compilation-old-error-list)
1836 (columns compilation-error-screen-columns)
1837 (last-line (nth 1 (cdr next-error)))
1838 (column (nth 2 (cdr next-error))))
1839 (set-buffer buffer)
1840 (save-excursion
1841 (save-restriction
1842 (widen)
1843 (goto-line last-line)
1844 (if (and column (> column 0))
1845 ;; Columns in error msgs are 1-origin.
1846 (if columns
1847 (move-to-column (1- column))
1848 (forward-char (1- column)))
1849 (beginning-of-line))
1850 (setcdr next-error (point-marker))
1851 ;; Make all the other error messages referring
1852 ;; to the same file have markers into the buffer.
1853 (while errors
1854 (and (consp (cdr (car errors)))
1855 (equal (car (cdr (car errors))) fileinfo)
1856 (let* ((this (nth 1 (cdr (car errors))))
1857 (column (nth 2 (cdr (car errors))))
1858 (lines (- this last-line)))
1859 (if (eq selective-display t)
1860 ;; When selective-display is t,
1861 ;; each C-m is a line boundary,
1862 ;; as well as each newline.
1863 (if (< lines 0)
1864 (re-search-backward "[\n\C-m]"
1865 nil 'end
1866 (- lines))
1867 (re-search-forward "[\n\C-m]"
1868 nil 'end
1869 lines))
1870 (forward-line lines))
1871 (if (and column (> column 1))
1872 (if columns
1873 (move-to-column (1- column))
1874 (forward-char (1- column)))
1875 (beginning-of-line))
1876 (setq last-line this)
1877 (setcdr (car errors) (point-marker))))
1878 (setq errors (cdr errors)))))))))
1879 ;; If we didn't get a marker for this error, or this
1880 ;; marker's buffer was killed, go on to the next one.
1881 (or (not (markerp (cdr next-error)))
1882 (not (marker-buffer (cdr next-error))))))
1883 (setq next-errors compilation-error-list
1884 next-error (car next-errors)))))
1886 (if compilation-skip-to-next-location
1887 ;; Skip over multiple error messages for the same source location,
1888 ;; so the next C-x ` won't go to an error in the same place.
1889 (while (and compilation-error-list
1890 (equal (cdr (car compilation-error-list))
1891 (cdr next-error)))
1892 (setq compilation-error-list (cdr compilation-error-list))))
1894 ;; We now have a marker for the position of the error source code.
1895 ;; NEXT-ERROR is a cons (ERROR . SOURCE) of two markers.
1896 next-error))
1898 (defun compilation-goto-locus (next-error)
1899 "Jump to an error locus returned by `compilation-next-error-locus'.
1900 Takes one argument, a cons (ERROR . SOURCE) of two markers.
1901 Selects a window with point at SOURCE, with another window displaying ERROR."
1902 (if (eq (window-buffer (selected-window))
1903 (marker-buffer (car next-error)))
1904 ;; If the compilation buffer window is selected,
1905 ;; keep the compilation buffer in this window;
1906 ;; display the source in another window.
1907 (let ((pop-up-windows t))
1908 (pop-to-buffer (marker-buffer (cdr next-error))))
1909 (if (window-dedicated-p (selected-window))
1910 (pop-to-buffer (marker-buffer (cdr next-error)))
1911 (switch-to-buffer (marker-buffer (cdr next-error)))))
1912 (goto-char (cdr next-error))
1913 ;; If narrowing got in the way of
1914 ;; going to the right place, widen.
1915 (or (= (point) (marker-position (cdr next-error)))
1916 (progn
1917 (widen)
1918 (goto-char (cdr next-error))))
1919 ;; If hideshow got in the way of
1920 ;; seeing the right place, open permanently.
1921 (mapcar (function (lambda (ov)
1922 (when (eq 'hs (overlay-get ov 'invisible))
1923 (delete-overlay ov)
1924 (goto-char (cdr next-error)))))
1925 (overlays-at (point)))
1927 ;; Show compilation buffer in other window, scrolled to this error.
1928 (let* ((pop-up-windows t)
1929 ;; Use an existing window if it is in a visible frame.
1930 (w (or (get-buffer-window (marker-buffer (car next-error)) 'visible)
1931 ;; Pop up a window.
1932 (display-buffer (marker-buffer (car next-error))))))
1933 (set-window-point w (car next-error))
1934 (set-window-start w (car next-error))
1935 (compilation-set-window-height w)))
1937 (defun compilation-find-file (marker filename dir &rest formats)
1938 "Find a buffer for file FILENAME.
1939 Search the directories in `compilation-search-path'.
1940 A nil in `compilation-search-path' means to try the
1941 current directory, which is passed in DIR.
1942 If FILENAME is not found at all, ask the user where to find it.
1943 Pop up the buffer containing MARKER and scroll to MARKER if we ask the user."
1944 (or formats (setq formats '("%s")))
1945 (save-excursion
1946 (let ((dirs compilation-search-path)
1947 buffer thisdir fmts name)
1948 (if (file-name-absolute-p filename)
1949 ;; The file name is absolute. Use its explicit directory as
1950 ;; the first in the search path, and strip it from FILENAME.
1951 (setq filename (abbreviate-file-name (expand-file-name filename))
1952 dirs (cons (file-name-directory filename) dirs)
1953 filename (file-name-nondirectory filename)))
1954 ;; Now search the path.
1955 (while (and dirs (null buffer))
1956 (setq thisdir (or (car dirs) dir)
1957 fmts formats)
1958 ;; For each directory, try each format string.
1959 (while (and fmts (null buffer))
1960 (setq name (expand-file-name (format (car fmts) filename) thisdir)
1961 buffer (and (file-exists-p name)
1962 (find-file-noselect name))
1963 fmts (cdr fmts)))
1964 (setq dirs (cdr dirs)))
1965 (or buffer
1966 ;; The file doesn't exist.
1967 ;; Ask the user where to find it.
1968 ;; If he hits C-g, then the next time he does
1969 ;; next-error, he'll skip past it.
1970 (let* ((pop-up-windows t)
1971 (w (display-buffer (marker-buffer marker))))
1972 (set-window-point w marker)
1973 (set-window-start w marker)
1974 (let ((name (expand-file-name
1975 (read-file-name
1976 (format "Find this error in: (default %s) "
1977 filename)
1978 dir filename t))))
1979 (if (file-directory-p name)
1980 (setq name (expand-file-name filename name)))
1981 (setq buffer (and (file-exists-p name)
1982 (find-file name))))))
1983 ;; Make intangible overlays tangible.
1984 (mapcar (function (lambda (ov)
1985 (when (overlay-get ov 'intangible)
1986 (overlay-put ov 'intangible nil))))
1987 (overlays-in (point-min) (point-max)))
1988 buffer)))
1990 (defun compilation-normalize-filename (filename)
1991 "Convert a filename string found in an error message to make it usable."
1993 ;; Check for a comint-file-name-prefix and prepend it if
1994 ;; appropriate. (This is very useful for
1995 ;; compilation-minor-mode in an rlogin-mode buffer.)
1996 (and (boundp 'comint-file-name-prefix)
1997 ;; If file name is relative, default-directory will
1998 ;; already contain the comint-file-name-prefix (done
1999 ;; by compile-abbreviate-directory).
2000 (file-name-absolute-p filename)
2001 (setq filename
2002 (concat comint-file-name-prefix filename)))
2004 ;; If compilation-parse-errors-filename-function is
2005 ;; defined, use it to process the filename.
2006 (when compilation-parse-errors-filename-function
2007 (setq filename
2008 (funcall compilation-parse-errors-filename-function
2009 filename)))
2011 ;; Some compilers (e.g. Sun's java compiler, reportedly)
2012 ;; produce bogus file names like "./bar//foo.c" for file
2013 ;; "bar/foo.c"; expand-file-name will collapse these into
2014 ;; "/foo.c" and fail to find the appropriate file. So we
2015 ;; look for doubled slashes in the file name and fix them
2016 ;; up in the buffer.
2017 (setq filename (command-line-normalize-file-name filename)))
2019 ;; Set compilation-error-list to nil, and unchain the markers that point to the
2020 ;; error messages and their text, so that they no longer slow down gap motion.
2021 ;; This would happen anyway at the next garbage collection, but it is better to
2022 ;; do it right away.
2023 (defun compilation-forget-errors ()
2024 (while compilation-old-error-list
2025 (let ((next-error (car compilation-old-error-list)))
2026 (set-marker (car next-error) nil)
2027 (if (markerp (cdr next-error))
2028 (set-marker (cdr next-error) nil)))
2029 (setq compilation-old-error-list (cdr compilation-old-error-list)))
2030 (setq compilation-error-list nil
2031 compilation-directory-stack (list default-directory))
2032 (if compilation-parsing-end
2033 (set-marker compilation-parsing-end 1))
2034 ;; Remove the highlighting added by compile-reinitialize-errors:
2035 (let ((inhibit-read-only t)
2036 (buffer-undo-list t)
2037 deactivate-mark)
2038 (remove-text-properties (point-min) (point-max)
2039 '(mouse-face highlight help-echo nil))))
2042 ;; This function is not needed any more by compilation mode.
2043 ;; Does anyone else need it or can it be deleted?
2044 (defun count-regexp-groupings (regexp)
2045 "Return the number of \\( ... \\) groupings in REGEXP (a string)."
2046 (let ((groupings 0)
2047 (len (length regexp))
2048 (i 0)
2050 (while (< i len)
2051 (setq c (aref regexp i)
2052 i (1+ i))
2053 (cond ((= c ?\[)
2054 ;; Find the end of this [...].
2055 (while (and (< i len)
2056 (not (= (aref regexp i) ?\])))
2057 (setq i (1+ i))))
2058 ((= c ?\\)
2059 (if (< i len)
2060 (progn
2061 (setq c (aref regexp i)
2062 i (1+ i))
2063 (if (= c ?\))
2064 ;; We found the end of a grouping,
2065 ;; so bump our counter.
2066 (setq groupings (1+ groupings))))))))
2067 groupings))
2069 (defvar compilation-current-file nil
2070 "Used by `compilation-parse-errors' to store filename for file being compiled.")
2072 ;; This variable is not used as a global variable. It's defined here just to
2073 ;; shut up the byte compiler. It's bound and used by compilation-parse-errors
2074 ;; and set by compile-collect-regexps.
2075 (defvar compilation-regexps nil)
2077 (defun compilation-parse-errors (limit-search find-at-least)
2078 "Parse the current buffer as grep, cc, lint or other error messages.
2079 See variable `compilation-parse-errors-function' for the interface it uses."
2080 (setq compilation-error-list nil)
2081 (message "Parsing error messages...")
2082 (if (null compilation-error-regexp-alist)
2083 (error "compilation-error-regexp-alist is empty!"))
2084 (let* ((compilation-regexps nil) ; Variable set by compile-collect-regexps.
2085 (default-directory (car compilation-directory-stack))
2086 (found-desired nil)
2087 (compilation-num-errors-found 0)
2088 ;; Set up now the expanded, abbreviated directory variables
2089 ;; that compile-abbreviate-directory will need, so we can
2090 ;; compute them just once here.
2091 (orig (abbreviate-file-name default-directory))
2092 (orig-expanded (abbreviate-file-name
2093 (file-truename default-directory)))
2094 (parent-expanded (abbreviate-file-name
2095 (expand-file-name "../" orig-expanded))))
2097 ;; Make a list of all the regexps. Each element has the form
2098 ;; (REGEXP TYPE IDX1 IDX2 ...)
2099 ;; where TYPE is one of leave, enter, file, error or nomessage.
2100 (compile-collect-regexps 'leave compilation-leave-directory-regexp-alist)
2101 (compile-collect-regexps 'enter compilation-enter-directory-regexp-alist)
2102 (compile-collect-regexps 'file compilation-file-regexp-alist)
2103 (compile-collect-regexps 'error compilation-error-regexp-alist)
2104 (compile-collect-regexps 'nomessage compilation-nomessage-regexp-alist)
2106 ;; Don't reparse messages already seen at last parse.
2107 (goto-char compilation-parsing-end)
2108 (when (and (bobp)
2109 (compilation-buffer-p (current-buffer)))
2110 (setq compilation-current-file nil) ; No current file at start.
2111 ;; Don't parse the first two lines as error messages.
2112 ;; This matters for grep.
2113 (forward-line 2))
2115 ;; Parse messages.
2116 (while (not (or found-desired (eobp)
2117 ;; Don't parse the "compilation finished" message
2118 ;; as a compilation error.
2119 (get-text-property (point) 'compilation-handle-exit)))
2120 (let ((this compilation-regexps) (prev nil) (alist nil) type)
2121 ;; Go through the regular expressions. If a match is found,
2122 ;; variable alist is set to the corresponding alist and the
2123 ;; matching regexp is moved to the front of compilation-regexps
2124 ;; to make it match faster next time.
2125 (while (and this (null alist))
2126 (if (not (looking-at (car (car this))))
2127 (progn (setq prev this) ; No match, go to next.
2128 (setq this (cdr this)))
2129 (setq alist (cdr (car this))) ; Got a match.
2130 ;;; (if prev ; If not the first regexp,
2131 ;;; (progn ; move it to the front.
2132 ;;; (setcdr prev (cdr this))
2133 ;;; (setcdr this compilation-regexps)
2134 ;;; (setq compilation-regexps this)))
2136 (if (and alist ; Seen a match and not to
2137 (not (eq (setq type (car alist)) 'nomessage))) ; be ignored.
2138 (let* ((end-of-match (match-end 0))
2139 (filename
2140 (compile-buffer-substring (car (setq alist (cdr alist)))))
2141 stack)
2142 (if (eq type 'error) ; error message
2143 (let* ((linenum (if (numberp (car (setq alist (cdr alist))))
2144 (string-to-int
2145 (compile-buffer-substring (car alist)))
2146 ;; (car alist) is not a number, must be a
2147 ;; function that is called below to return
2148 ;; an error position descriptor.
2149 (car alist)))
2150 ;; Convert to integer later if linenum not a function.
2151 (column (compile-buffer-substring
2152 (car (setq alist (cdr alist)))))
2153 this-error)
2155 ;; Check that we have a file name.
2156 (or filename
2157 ;; No file name in message, we must have seen it before
2158 (setq filename compilation-current-file)
2159 (error "\
2160 An error message with no file name and no file name has been seen earlier"))
2162 ;; Clean up the file name string in several ways.
2163 (setq filename (compilation-normalize-filename filename))
2165 (setq filename
2166 (cons filename (cons default-directory (cdr alist))))
2168 ;; Locate the erring file and line.
2169 ;; Make this-error a new elt for compilation-error-list,
2170 ;; giving a marker for the current compilation buffer
2171 ;; location, and the file and line number of the error.
2172 ;; Save, as the start of the error, the beginning of the
2173 ;; line containing the match.
2174 (setq this-error
2175 (if (numberp linenum)
2176 (list (point-marker) filename linenum
2177 (and column (string-to-int column)))
2178 ;; If linenum is not a number then it must be
2179 ;; a function returning an error position
2180 ;; descriptor or nil (meaning no position).
2181 (save-excursion
2182 (funcall linenum filename column))))
2184 ;; We have an error position descriptor.
2185 ;; If we have found as many new errors as the user
2186 ;; wants, or if we are past the buffer position he
2187 ;; indicated, then we continue to parse until we have
2188 ;; seen all consecutive errors in the same file. This
2189 ;; means that all the errors of a source file will be
2190 ;; seen in one parsing run, so that the error positions
2191 ;; will be recorded as markers in the source file
2192 ;; buffer that will move when the buffer is changed.
2193 (if (and this-error
2194 compilation-error-list ; At least one previous.
2195 (or (and find-at-least
2196 (>= compilation-num-errors-found
2197 find-at-least))
2198 (and limit-search
2199 (>= end-of-match limit-search)))
2200 ;; `this-error' could contain a pair of
2201 ;; markers already.
2202 (let ((thispos (cdr this-error))
2203 (lastpos (cdar compilation-error-list)))
2204 (not (equal
2205 (if (markerp thispos)
2206 (marker-buffer thispos)
2207 (car thispos))
2208 (if (markerp lastpos)
2209 (marker-buffer lastpos)
2210 (car lastpos))))))
2211 ;; We are past the limits and the last error
2212 ;; parsed, didn't belong to the same source file
2213 ;; as the earlier ones i.e. we have seen all the
2214 ;; errors belonging to the earlier file. We don't
2215 ;; add the error just parsed so that the next
2216 ;; parsing run can get it and the following errors
2217 ;; in the same file all at once.
2218 (setq found-desired t)
2220 (goto-char end-of-match) ; Prepare for next message.
2221 ;; Don't add the same source line more than once.
2222 (and this-error
2223 (not (and
2224 compilation-error-list
2225 (equal (cdr (car compilation-error-list))
2226 (cdr this-error))))
2227 (setq compilation-error-list
2228 (cons this-error compilation-error-list)
2229 compilation-num-errors-found
2230 (1+ compilation-num-errors-found)))))
2232 ;; Not an error message.
2233 (if (eq type `file) ; Change current file.
2234 (when filename
2235 (setq compilation-current-file
2236 ;; Clean up the file name string in several ways.
2237 (compilation-normalize-filename filename)))
2238 ;; Enter or leave directory.
2239 (setq stack compilation-directory-stack)
2240 ;; Don't check if it is really a directory.
2241 ;; Let the code to search and clean up file names
2242 ;; try to use it in any case.
2243 (when filename
2244 ;; Clean up the directory name string in several ways.
2245 (setq filename (compilation-normalize-filename filename))
2246 (setq filename
2247 ;; The directory name in the message
2248 ;; is a truename. Try to convert it to a form
2249 ;; like what the user typed in.
2250 (compile-abbreviate-directory
2251 (file-name-as-directory
2252 (expand-file-name filename))
2253 orig orig-expanded parent-expanded))
2254 (if (eq type 'leave)
2255 ;; If we are leaving a specific directory,
2256 ;; as preparation, pop out of all other directories
2257 ;; that we entered nested within it.
2258 (while (and stack
2259 (not (string-equal (car stack)
2260 filename)))
2261 (setq stack (cdr stack)))
2262 (setq compilation-directory-stack
2263 (cons filename compilation-directory-stack)
2264 default-directory filename)))
2265 (and (eq type 'leave)
2266 stack
2267 (setq compilation-directory-stack (cdr stack))
2268 (setq stack (car compilation-directory-stack))
2269 (setq default-directory stack)))
2270 (goto-char end-of-match) ; Prepare to look at next message.
2271 (and limit-search (>= end-of-match limit-search)
2272 ;; The user wanted a specific error, and we're past it.
2273 ;; We do this check here rather than at the end of the
2274 ;; loop because if the last thing seen is an error
2275 ;; message, we must carefully discard the last error
2276 ;; when it is the first in a new file (see above in
2277 ;; the error-message case)
2278 (setq found-desired t)))
2280 ;; Go to before the last character in the message so that we will
2281 ;; see the next line also when the message ended at end of line.
2282 ;; When we ignore the last error message above, this will
2283 ;; cancel the effect of forward-line below so that point
2284 ;; doesn't move.
2285 (forward-char -1)
2287 ;; Is this message necessary any more? Parsing is now so fast
2288 ;; that you might not need to know how it proceeds.
2289 (message
2290 "Parsing error messages...%d found. %.0f%% of buffer seen."
2291 compilation-num-errors-found
2292 ;; Use floating-point because (* 100 (point)) frequently
2293 ;; exceeds the range of Emacs Lisp integers.
2294 (/ (* 100.0 (point)) (point-max)))
2297 (forward-line 1)) ; End of while loop. Look at next line.
2299 (set-marker compilation-parsing-end (point))
2300 (setq compilation-error-list (nreverse compilation-error-list))
2301 ;; (message "Parsing error messages...done. %d found. %.0f%% of buffer seen."
2302 ;; compilation-num-errors-found
2303 ;; (/ (* 100.0 (point)) (point-max)))
2304 (message "Parsing error messages...done.")))
2306 (defun compile-collect-regexps (type this)
2307 ;; Add elements to variable compilation-regexps that is bound in
2308 ;; compilation-parse-errors.
2309 (and (not (eq this t))
2310 (dolist (el this)
2311 (push (cons (car el) (cons type (cdr el))) compilation-regexps))))
2313 (defun compile-buffer-substring (index)
2314 "Get substring matched by INDEXth subexpression."
2315 (if index
2316 (let ((beg (match-beginning index)))
2317 (if beg (buffer-substring beg (match-end index))))))
2319 ;; If directory DIR is a subdir of ORIG or of ORIG's parent,
2320 ;; return a relative name for it starting from ORIG or its parent.
2321 ;; ORIG-EXPANDED is an expanded version of ORIG.
2322 ;; PARENT-EXPANDED is an expanded version of ORIG's parent.
2323 ;; Those two args could be computed here, but we run faster by
2324 ;; having the caller compute them just once.
2325 (defun compile-abbreviate-directory (dir orig orig-expanded parent-expanded)
2326 ;; Apply canonical abbreviations to DIR first thing.
2327 ;; Those abbreviations are already done in the other arguments passed.
2328 (setq dir (abbreviate-file-name dir))
2330 ;; Check for a comint-file-name-prefix and prepend it if appropriate.
2331 ;; (This is very useful for compilation-minor-mode in an rlogin-mode
2332 ;; buffer.)
2333 (if (boundp 'comint-file-name-prefix)
2334 (setq dir (concat comint-file-name-prefix dir)))
2336 (if (and (> (length dir) (length orig-expanded))
2337 (string= orig-expanded
2338 (substring dir 0 (length orig-expanded))))
2339 (setq dir
2340 (concat orig
2341 (substring dir (length orig-expanded)))))
2342 (if (and (> (length dir) (length parent-expanded))
2343 (string= parent-expanded
2344 (substring dir 0 (length parent-expanded))))
2345 (setq dir
2346 (concat (file-name-directory
2347 (directory-file-name orig))
2348 (substring dir (length parent-expanded)))))
2349 dir)
2351 (add-to-list 'debug-ignored-errors "^No more errors\\( yet\\|\\)$")
2353 (provide 'compile)
2355 ;;; compile.el ends here