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