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