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