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