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