Recognize sparclet cpu.
[bpt/emacs.git] / lisp / progmodes / compile.el
CommitLineData
daa37602 1;;; compile.el --- run compiler as inferior of Emacs, parse error messages.
fad160d5 2
fd5e58d7 3;; Copyright (C) 1985, 86, 87, 93, 94, 1995, 1996 Free Software Foundation, Inc.
3a801d0c 4
29add8b9 5;; Author: Roland McGrath <roland@prep.ai.mit.edu>
d1c7011d 6;; Maintainer: FSF
e9571d2a 7;; Keywords: tools, processes
d1c7011d 8
55dfd2c4
RS
9;; This file is part of GNU Emacs.
10
29add8b9
RM
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
55dfd2c4 16;; GNU Emacs is distributed in the hope that it will be useful,
29add8b9
RM
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
b578f267
EN
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.
55dfd2c4 25
5cc57841
ER
26;;; Commentary:
27
28;; This package provides the compile and grep facilities documented in
29;; the Emacs user's manual.
30
d1c7011d
ER
31;;; Code:
32
7c163413
RM
33;;;###autoload
34(defvar compilation-mode-hook nil
4f6e4ad6 35 "*List of hook functions run by `compilation-mode' (see `run-hooks').")
7c163413
RM
36
37;;;###autoload
6e1dbafa 38(defvar compilation-window-height nil
d3cb357b
RM
39 "*Number of lines in a compilation window. If nil, use Emacs default.")
40
55dfd2c4
RS
41(defvar compilation-error-list nil
42 "List of error message descriptors for visiting erring functions.
fc0094d7
RM
43Each error descriptor is a cons (or nil). Its car is a marker pointing to
44an error message. If its cdr is a marker, it points to the text of the
533304f8
RM
45line the message is about. If its cdr is a cons, it is a list
46\(\(DIRECTORY . FILE\) LINE [COLUMN]\). Or its cdr may be nil if that
47error is not interesting.
d3cb357b
RM
48
49The value may be t instead of a list; this means that the buffer of
29478cc5
JB
50error messages should be reparsed the next time the list of errors is wanted.
51
52Some other commands (like `diff') use this list to control the error
9c09c008 53message tracking facilities; if you change its structure, you should make
29478cc5
JB
54sure you also change those packages. Perhaps it is better not to change
55it at all.")
55dfd2c4
RS
56
57(defvar compilation-old-error-list nil
58 "Value of `compilation-error-list' after errors were parsed.")
59
501cf428 60(defvar compilation-parse-errors-function 'compilation-parse-errors
b2bb6ec8 61 "Function to call to parse error messages from a compilation.
c540863c
RM
62It takes args LIMIT-SEARCH and FIND-AT-LEAST.
63If LIMIT-SEARCH is non-nil, don't bother parsing past that location.
501cf428 64If FIND-AT-LEAST is non-nil, don't bother parsing after finding that
e78e10ca 65many new errors.
d3cb357b
RM
66It should read in the source files which have errors and set
67`compilation-error-list' to a list with an element for each error message
68found. See that variable for more info.")
55dfd2c4 69
aa228418 70;;;###autoload
d3cb357b 71(defvar compilation-buffer-name-function nil
6c43f2f9
RS
72 "Function to compute the name of a compilation buffer.
73The function receives one argument, the name of the major mode of the
74compilation buffer. It should return a string.
75nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
55dfd2c4 76
aa228418 77;;;###autoload
d3cb357b 78(defvar compilation-finish-function nil
aa228418 79 "*Function to call when a compilation process finishes.
d3cb357b
RM
80It is called with two arguments: the compilation buffer, and a string
81describing how the process finished.")
55dfd2c4 82
d3cb357b 83(defvar compilation-last-buffer nil
6c43f2f9
RS
84 "The most recent compilation buffer.
85A buffer becomes most recent when its compilation is started
86or when it is used with \\[next-error] or \\[compile-goto-error].")
55dfd2c4 87
ebff767c
RM
88(defvar compilation-in-progress nil
89 "List of compilation processes now running.")
90(or (assq 'compilation-in-progress minor-mode-alist)
91 (setq minor-mode-alist (cons '(compilation-in-progress " Compiling")
92 minor-mode-alist)))
93
d3cb357b
RM
94(defvar compilation-parsing-end nil
95 "Position of end of buffer when last error messages were parsed.")
96
97(defvar compilation-error-message "No more errors"
6c43f2f9
RS
98 "Message to print when no more matches are found.")
99
100(defvar compilation-num-errors-found)
d3cb357b
RM
101
102(defvar compilation-error-regexp-alist
103 '(
d86bdede 104 ;; NOTE! See also grep-regexp-alist, below.
7ee790ac 105
d3cb357b 106 ;; 4.3BSD grep, cc, lint pass 1:
7ee790ac
RM
107 ;; /usr/src/foo/foo.c(8): warning: w may be used before set
108 ;; or GNU utilities:
109 ;; foo.c:8: error message
110 ;; or HP-UX 7.0 fc:
111 ;; foo.f :16 some horrible error message
08b1edf4
RM
112 ;; or GNU utilities with column (GNAT 1.82):
113 ;; foo.adb:2:1: Unit name does not match file name
501cf428 114 ;;
57c8389c
JB
115 ;; We'll insist that the number be followed by a colon or closing
116 ;; paren, because otherwise this matches just about anything
117 ;; containing a number with spaces around it.
08b1edf4 118 ("\n\
3e8258e7 119\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)\\([) \t]\\|\
08b1edf4 120:\\([^0-9\n]\\|\\([0-9]+:\\)\\)\\)" 1 2 5)
69d4d27f
RS
121
122 ;; Borland C++:
123 ;; Error ping.c 15: Unable to open include file 'sys/types.h'
124 ;; Warning ping.c 68: Call to function 'func' with no prototype
3e8258e7 125 ("\n\\(Error\\|Warning\\) \\([a-zA-Z]?:?[^:( \t\n]+\\)\
69d4d27f 126 \\([0-9]+\\)\\([) \t]\\|:[^0-9\n]\\)" 2 3)
7ee790ac 127
d3cb357b 128 ;; 4.3BSD lint pass 2
7ee790ac 129 ;; strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8)
3e8258e7
RM
130 ("[ \t:]\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(](+[ \t]*\\([0-9]+\\))[:) \t]*$"
131 1 2)
7ee790ac 132
d3cb357b 133 ;; 4.3BSD lint pass 3
7ee790ac 134 ;; bloofle defined( /users/wolfgang/foo.c(4) ), but never used
daa37602 135 ;; This used to be
3e8258e7 136 ;; ("[ \t(]+\\([a-zA-Z]?:?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2)
daa37602 137 ;; which is regexp Impressionism - it matches almost anything!
3e8258e7 138 ("([ \t]*\\([a-zA-Z]?:?[^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2)
7ee790ac 139
369d3cdc
RM
140 ;; MIPS lint pass<n>; looks good for SunPro lint also
141 ;; TrimMask (255) in solomon.c may be indistinguishable from TrimMasks (93) in solomon.c due to truncation
142 ("[^ ]+ (\\([0-9]+\\)) in \\([^ ]+\\)" 2 1)
143 ;; name defined but never used: LinInt in cmap_calc.c(199)
144 ("in \\([^(]+\\)(\\([0-9]+\\))$" 1 2)
145
ff735134 146 ;; Ultrix 3.0 f77:
f89fdaed 147 ;; fort: Severe: addstf.f, line 82: Missing operator or delimiter symbol
984ae4ed
RM
148 ;; Some SGI cc version:
149 ;; cfe: Warning 835: foo.c, line 2: something
150 ("\n\\(cfe\\|fort\\): [^:\n]*: \\([^ \n]*\\), line \\([0-9]+\\):" 2 3)
501cf428 151 ;; Error on line 3 of t.f: Execution error unclassifiable statement
ff735134 152 ;; Unknown who does this:
9c09c008 153 ;; Line 45 of "foo.c": bloofle undefined
5ff3b093
RM
154 ;; Absoft FORTRAN 77 Compiler 3.1.3
155 ;; error on line 19 of fplot.f: spelling error?
156 ;; warning on line 17 of fplot.f: data type is undefined for variable d
157 ("\\(\n\\|on \\)[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\
3e8258e7 158of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2)
7ee790ac
RM
159
160 ;; Apollo cc, 4.3BSD fc:
161 ;; "foo.f", line 3: Error: syntax error near end of statement
6d68d793
RS
162 ;; IBM RS6000:
163 ;; "vvouch.c", line 19.5: 1506-046 (S) Syntax error.
cacf1905
RM
164 ;; Unknown compiler:
165 ;; File "foobar.ml", lines 5-8, characters 20-155: blah blah
a0c567b5
RM
166 ;; Microtec mcc68k:
167 ;; "foo.c", line 32 pos 1; (E) syntax error; unexpected symbol: "lossage"
501cf428 168 ;; GNAT (as of July 94):
37fd2208 169 ;; "foo.adb", line 2(11): warning: file name does not match ...
b1707ae4
RM
170 ;; IBM AIX xlc compiler:
171 ;; "src/swapping.c", line 30.34: 1506-342 (W) "/*" detected in comment.
172 ("\"\\([^,\" \n\t]+\\)\", lines? \
173\\([0-9]+\\)\\([\(.]\\([0-9]+\\)\)?\\)?[:., (-]" 1 2 4)
18710add
JB
174
175 ;; MIPS RISC CC - the one distributed with Ultrix:
7ee790ac 176 ;; ccom: Error: foo.c, line 2: syntax error
dfb89664 177 ;; DEC AXP OSF/1 cc
501cf428 178 ;; /usr/lib/cmplrs/cc/cfe: Error: foo.c: 1: blah blah
dfb89664 179 ("rror: \\([^,\" \n\t]+\\)[,:] \\(line \\)?\\([0-9]+\\):" 1 3)
7ee790ac
RM
180
181 ;; IBM AIX PS/2 C version 1.1:
182 ;; ****** Error number 140 in line 8 of file errors.c ******
daa37602 183 ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
d3cb357b
RM
184 ;; IBM AIX lint is too painful to do right this way. File name
185 ;; prefixes entire sections rather than being on each line.
57c8389c 186
72244bea
RM
187 ;; Lucid Compiler, lcc 3.x
188 ;; E, file.cc(35,52) Illegal operation on pointers
c021b7a5 189 ("\n[EW], \\([^(\n]*\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)" 1 2 3)
72244bea 190
08b1edf4 191 ;; GNU messages with program name and optional column number.
3e8258e7 192 ("\n[a-zA-Z]?:?[^0-9 \n\t:]+:[ \t]*\\([^ \n\t:]+\\):\
08b1edf4 193\\([0-9]+\\):\\(\\([0-9]+\\)[: \t]\\)?" 1 2 4)
4dbf8a2c
RM
194
195 ;; Cray C compiler error messages
19ae9cb0 196 ("\n\\(cc\\| cft\\)-[0-9]+ c\\(c\\|f77\\): ERROR \\([^,\n]+, \\)* File = \\([^,\n]+\\), Line = \\([0-9]+\\)" 4 5)
4dbf8a2c
RM
197
198 ;; IBM C/C++ Tools 2.01:
199 ;; foo.c(2:0) : informational EDC0804: Function foo is not referenced.
200 ;; foo.c(3:8) : warning EDC0833: Implicit return statement encountered.
201 ;; foo.c(5:5) : error EDC0350: Syntax error.
54de3248 202 ("\n\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) : " 1 2 3)
cfda7e6d
RM
203
204 ;; Sun ada (VADS, Solaris):
205 ;; /home3/xdhar/rcds_rc/main.a, line 361, char 6:syntax error: "," inserted
206 ("\n\\([^, ]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
d3cb357b 207 )
6c43f2f9 208 "Alist that specifies how to match errors in compiler output.
20c1daec 209Each elt has the form (REGEXP FILE-IDX LINE-IDX [COLUMN-IDX FILE-FORMAT...])
72244bea
RM
210If REGEXP matches, the FILE-IDX'th subexpression gives the file name, and
211the LINE-IDX'th subexpression gives the line number. If COLUMN-IDX is
20c1daec
RM
212given, the COLUMN-IDX'th subexpression gives the column number on that line.
213If any FILE-FORMAT is given, each is a format string to produce a file name to
214try; %s in the string is replaced by the text matching the FILE-IDX'th
215subexpression.")
55dfd2c4 216
90016295
RS
217(defvar compilation-read-command t
218 "If not nil, M-x compile reads the compilation command to use.
219Otherwise, M-x compile just uses the value of `compile-command'.")
220
221(defvar compilation-ask-about-save t
222 "If not nil, M-x compile asks which buffers to save before compiling.
223Otherwise, it saves all modified buffers without asking.")
224
15d1a8da 225(defvar grep-regexp-alist
3e8258e7 226 '(("^\\([a-zA-Z]?:?[^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2))
15d1a8da
RM
227 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.")
228
98b63c41 229(defvar grep-command "grep -n "
203a5711 230 "Last grep command used in \\[grep]; default for next grep.")
98b63c41 231
7c163413 232;;;###autoload
d3cb357b 233(defvar compilation-search-path '(nil)
7c163413 234 "*List of directories to search for source files named in error messages.
d3cb357b
RM
235Elements should be directory names, not file names of directories.
236nil as an element means to try the default directory.")
55dfd2c4
RS
237
238(defvar compile-command "make -k "
239 "Last shell command used to do a compilation; default for next compilation.
240
241Sometimes it is useful for files to supply local values for this variable.
242You might also use mode hooks to specify it in certain modes, like this:
243
244 (setq c-mode-hook
245 '(lambda () (or (file-exists-p \"makefile\") (file-exists-p \"Makefile\")
246 (progn (make-local-variable 'compile-command)
247 (setq compile-command
248 (concat \"make -k \"
249 buffer-file-name))))))")
250
6e1dbafa 251(defvar compilation-enter-directory-regexp
daa37602 252 ": Entering directory `\\(.*\\)'$"
6c43f2f9
RS
253 "Regular expression matching lines that indicate a new current directory.
254This must contain one \\(, \\) pair around the directory name.
d3cb357b
RM
255
256The default value matches lines printed by the `-w' option of GNU Make.")
257
6e1dbafa 258(defvar compilation-leave-directory-regexp
daa37602 259 ": Leaving directory `\\(.*\\)'$"
6c43f2f9
RS
260 "Regular expression matching lines that indicate restoring current directory.
261This may contain one \\(, \\) pair around the name of the directory
262being moved from. If it does not, the last directory entered \(by a
263line matching `compilation-enter-directory-regexp'\) is assumed.
d3cb357b
RM
264
265The default value matches lines printed by the `-w' option of GNU Make.")
266
267(defvar compilation-directory-stack nil
6c43f2f9
RS
268 "Stack of previous directories for `compilation-leave-directory-regexp'.
269The head element is the directory the compilation was started in.")
d3cb357b 270
01f89d11
RM
271(defvar compilation-exit-message-function nil "\
272If non-nil, called when a compilation process dies to return a status message.
fd5e58d7
RM
273This should be a function of three arguments: process status, exit status,
274and exit message; it returns a cons (MESSAGE . MODELINE) of the strings to
275write into the compilation buffer, and to put in its mode line.")
01f89d11 276
770970cb
RS
277;; History of compile commands.
278(defvar compile-history nil)
279;; History of grep commands.
280(defvar grep-history nil)
281
9af0d309 282(defvar compilation-mode-font-lock-keywords
c81b38d3 283 ;; This regexp needs a bit of rewriting. What is the third grouping for?
3e8258e7
RM
284 '(("^\\([a-zA-Z]?:?[^ \n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$"
285 1 font-lock-function-name-face))
9af0d309
RS
286;;; ("^\\([^\n:]*:\\([0-9]+:\\)+\\)\\(.*\\)$" 0 font-lock-keyword-face keep)
287 "Additional expressions to highlight in Compilation mode.")
01f89d11 288\f
d3cb357b 289;;;###autoload
55dfd2c4
RS
290(defun compile (command)
291 "Compile the program including the current buffer. Default: run `make'.
292Runs COMMAND, a shell command, in a separate process asynchronously
293with output going to the buffer `*compilation*'.
d3cb357b 294
55dfd2c4
RS
295You can then use the command \\[next-error] to find the next error message
296and move to the source code that caused it.
297
08b1edf4
RM
298Interactively, prompts for the command if `compilation-read-command' is
299non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
300
55dfd2c4 301To run more than one compilation at once, start one and rename the
d3cb357b
RM
302\`*compilation*' buffer to some other name with \\[rename-buffer].
303Then start the next one.
304
305The name used for the buffer is actually whatever is returned by
306the function in `compilation-buffer-name-function', so you can set that
307to a function that generates a unique name."
90016295 308 (interactive
08b1edf4 309 (if (or compilation-read-command current-prefix-arg)
90016295
RS
310 (list (read-from-minibuffer "Compile command: "
311 compile-command nil nil
312 '(compile-history . 1)))
313 (list compile-command)))
55dfd2c4 314 (setq compile-command command)
90016295 315 (save-some-buffers (not compilation-ask-about-save) nil)
d3cb357b 316 (compile-internal compile-command "No more errors"))
55dfd2c4 317
e60476ca
RS
318;;; run compile with the default command line
319(defun recompile ()
320 "Re-compile the program including the current buffer."
321 (interactive)
322 (save-some-buffers (not compilation-ask-about-save) nil)
323 (compile-internal compile-command "No more errors"))
09843b4a
RS
324
325;; The system null device. (Should reference NULL_DEVICE from C.)
326(defvar grep-null-device "/dev/null" "The system null device.")
327
d3cb357b 328;;;###autoload
55dfd2c4
RS
329(defun grep (command-args)
330 "Run grep, with user-specified args, and collect output in a buffer.
331While grep runs asynchronously, you can use the \\[next-error] command
d3cb357b
RM
332to find the text that grep hits refer to.
333
770970cb
RS
334This command uses a special history list for its arguments, so you can
335easily repeat a grep command."
55dfd2c4 336 (interactive
770970cb 337 (list (read-from-minibuffer "Run grep (like this): "
98b63c41 338 grep-command nil nil 'grep-history)))
01f89d11
RM
339 (let ((buf (compile-internal (concat command-args " " grep-null-device)
340 "No more grep hits" "grep"
341 ;; Give it a simpler regexp to match.
342 nil grep-regexp-alist)))
343 (save-excursion
344 (set-buffer buf)
345 (set (make-local-variable 'compilation-exit-message-function)
fd5e58d7
RM
346 (lambda (status code msg)
347 (if (eq status 'exit)
348 (cond ((zerop code)
349 '("finished (matches found)\n" . "matched"))
350 ((= code 1)
351 '("finished with no matches found\n" . "no match"))
352 (t
353 (cons msg code)))
354 (cons msg code)))))))
55dfd2c4
RS
355
356(defun compile-internal (command error-message
d3cb357b
RM
357 &optional name-of-mode parser regexp-alist
358 name-function)
55dfd2c4
RS
359 "Run compilation command COMMAND (low level interface).
360ERROR-MESSAGE is a string to print if the user asks to see another error
361and there are no more errors. Third argument NAME-OF-MODE is the name
d3cb357b
RM
362to display as the major mode in the compilation buffer.
363
364Fourth arg PARSER is the error parser function (nil means the default). Fifth
365arg REGEXP-ALIST is the error message regexp alist to use (nil means the
366default). Sixth arg NAME-FUNCTION is a function called to name the buffer (nil
367means the default). The defaults for these variables are the global values of
368\`compilation-parse-errors-function', `compilation-error-regexp-alist', and
646bd331
RM
369\`compilation-buffer-name-function', respectively.
370
371Returns the compilation buffer created."
d3cb357b 372 (let (outbuf)
55dfd2c4 373 (save-excursion
d3cb357b
RM
374 (or name-of-mode
375 (setq name-of-mode "Compilation"))
376 (setq outbuf
377 (get-buffer-create
378 (funcall (or name-function compilation-buffer-name-function
379 (function (lambda (mode)
380 (concat "*" (downcase mode) "*"))))
381 name-of-mode)))
382 (set-buffer outbuf)
383 (let ((comp-proc (get-buffer-process (current-buffer))))
384 (if comp-proc
385 (if (or (not (eq (process-status comp-proc) 'run))
386 (yes-or-no-p
bea1d57a
JB
387 (format "A %s process is running; kill it? "
388 name-of-mode)))
d3cb357b
RM
389 (condition-case ()
390 (progn
391 (interrupt-process comp-proc)
392 (sit-for 1)
393 (delete-process comp-proc))
394 (error nil))
395 (error "Cannot have two processes in `%s' at once"
396 (buffer-name))
397 )))
398 ;; In case the compilation buffer is current, make sure we get the global
399 ;; values of compilation-error-regexp-alist, etc.
400 (kill-all-local-variables))
401 (let ((regexp-alist (or regexp-alist compilation-error-regexp-alist))
402 (parser (or parser compilation-parse-errors-function))
403 (thisdir default-directory)
501cf428 404 outwin)
d3cb357b
RM
405 (save-excursion
406 ;; Clear out the compilation buffer and make it writable.
407 ;; Change its default-directory to the directory where the compilation
408 ;; will happen, and insert a `cd' command to indicate this.
409 (set-buffer outbuf)
410 (setq buffer-read-only nil)
5d5ab7ac 411 (buffer-disable-undo (current-buffer))
d3cb357b 412 (erase-buffer)
5d5ab7ac 413 (buffer-enable-undo (current-buffer))
d3cb357b
RM
414 (setq default-directory thisdir)
415 (insert "cd " thisdir "\n" command "\n")
416 (set-buffer-modified-p nil))
417 ;; If we're already in the compilation buffer, go to the end
418 ;; of the buffer, so point will track the compilation output.
419 (if (eq outbuf (current-buffer))
420 (goto-char (point-max)))
421 ;; Pop up the compilation buffer.
422 (setq outwin (display-buffer outbuf))
d4ece679
RS
423 (save-excursion
424 (set-buffer outbuf)
425 (compilation-mode)
a72ba929 426 ;; (setq buffer-read-only t) ;;; Non-ergonomic.
d4ece679
RS
427 (set (make-local-variable 'compilation-parse-errors-function) parser)
428 (set (make-local-variable 'compilation-error-message) error-message)
429 (set (make-local-variable 'compilation-error-regexp-alist) regexp-alist)
430 (setq default-directory thisdir
431 compilation-directory-stack (list default-directory))
432 (set-window-start outwin (point-min))
433 (setq mode-name name-of-mode)
434 (or (eq outwin (selected-window))
435 (set-window-point outwin (point-min)))
c94b02d6 436 (compilation-set-window-height outwin)
d4ece679 437 ;; Start the compilation.
35f7e85b 438 (if (fboundp 'start-process)
2bb240a9
RS
439 (let* ((process-environment (cons "EMACS=t" process-environment))
440 (proc (start-process-shell-command (downcase mode-name)
441 outbuf
442 command)))
35f7e85b
RS
443 (set-process-sentinel proc 'compilation-sentinel)
444 (set-process-filter proc 'compilation-filter)
445 (set-marker (process-mark proc) (point) outbuf)
501cf428 446 (setq compilation-in-progress
35f7e85b 447 (cons proc compilation-in-progress)))
fd5e58d7
RM
448 ;; No asynchronous processes available.
449 (message "Executing `%s'..." command)
d3e56891
RS
450 ;; Fake modeline display as if `start-process' were run.
451 (setq mode-line-process ":run")
fd5e58d7
RM
452 (force-mode-line-update)
453 (sit-for 0) ; Force redisplay
35f7e85b 454 (let ((status (call-process shell-file-name nil outbuf nil "-c"
fd5e58d7
RM
455 command)))
456 (cond ((numberp status)
457 (compilation-handle-exit 'exit status
458 (if (zerop status)
459 "finished\n"
460 (format "\
461exited abnormally with code %d\n"
462 status))))
463 ((stringp status)
464 (compilation-handle-exit 'signal status
465 (concat status "\n")))
466 (t
467 (compilation-handle-exit 'bizarre status status))))
468 (message "Executing `%s'...done" command))))
d3cb357b
RM
469 ;; Make it so the next C-x ` will use this buffer.
470 (setq compilation-last-buffer outbuf)))
55dfd2c4 471
c94b02d6
RS
472;; Set the height of WINDOW according to compilation-window-height.
473(defun compilation-set-window-height (window)
474 (and compilation-window-height
475 (= (window-width window) (frame-width (window-frame window)))
476 ;; If window is alone in its frame, aside from a minibuffer,
477 ;; don't change its height.
478 (not (eq window (frame-root-window (window-frame window))))
8205cbfc
RS
479 ;; This save-excursion prevents us from changing the current buffer,
480 ;; which might not be the same as the selected window's buffer.
481 (save-excursion
482 (let ((w (selected-window)))
483 (unwind-protect
484 (progn
485 (select-window window)
486 (enlarge-window (- compilation-window-height
487 (window-height))))
488 (select-window w))))))
c94b02d6 489
0b18a8f6 490(defvar compilation-minor-mode-map
55dfd2c4 491 (let ((map (make-sparse-keymap)))
f98494a4 492 (define-key map [mouse-2] 'compile-mouse-goto-error)
55dfd2c4 493 (define-key map "\C-c\C-c" 'compile-goto-error)
4e7ce12e 494 (define-key map "\C-m" 'compile-goto-error)
d3cb357b 495 (define-key map "\C-c\C-k" 'kill-compilation)
646bd331
RM
496 (define-key map "\M-n" 'compilation-next-error)
497 (define-key map "\M-p" 'compilation-previous-error)
d1ed4475
RM
498 (define-key map "\M-{" 'compilation-previous-file)
499 (define-key map "\M-}" 'compilation-next-file)
55dfd2c4 500 map)
4f6e4ad6 501 "Keymap for `compilation-minor-mode'.")
0b18a8f6
RM
502
503(defvar compilation-mode-map
504 (let ((map (cons 'keymap compilation-minor-mode-map)))
505 (define-key map " " 'scroll-up)
506 (define-key map "\^?" 'scroll-down)
e60476ca
RS
507 ;; Set up the menu-bar
508 (define-key map [menu-bar compilation-menu]
509 (cons "Compile" (make-sparse-keymap "Compile")))
510
511 (define-key map [menu-bar compilation-menu compilation-mode-kill-compilation]
0949ba2b 512 '("Stop Compilation" . kill-compilation))
e60476ca
RS
513 (define-key map [menu-bar compilation-menu compilation-mode-separator2]
514 '("----" . nil))
515 (define-key map [menu-bar compilation-menu compilation-mode-first-error]
0949ba2b 516 '("First Error" . first-error))
e60476ca 517 (define-key map [menu-bar compilation-menu compilation-mode-previous-error]
0949ba2b 518 '("Previous Error" . previous-error))
e60476ca 519 (define-key map [menu-bar compilation-menu compilation-mode-next-error]
0949ba2b 520 '("Next Error" . next-error))
e60476ca
RS
521 (define-key map [menu-bar compilation-menu compilation-separator2]
522 '("----" . nil))
523 (define-key map [menu-bar compilation-menu compilation-mode-grep]
524 '("Grep" . grep))
525 (define-key map [menu-bar compilation-menu compilation-mode-recompile]
526 '("Recompile" . recompile))
527 (define-key map [menu-bar compilation-menu compilation-mode-compile]
528 '("Compile" . compile))
0b18a8f6
RM
529 map)
530 "Keymap for compilation log buffers.
4f6e4ad6 531`compilation-minor-mode-map' is a cdr of this.")
55dfd2c4 532
501cf428 533;;;###autoload
55dfd2c4
RS
534(defun compilation-mode ()
535 "Major mode for compilation log buffers.
536\\<compilation-mode-map>To visit the source for a line-numbered error,
d3cb357b 537move point to the error message line and type \\[compile-goto-error].
7c163413
RM
538To kill the compilation, type \\[kill-compilation].
539
540Runs `compilation-mode-hook' with `run-hooks' (which see)."
55dfd2c4 541 (interactive)
9af0d309 542 (kill-all-local-variables)
55dfd2c4 543 (use-local-map compilation-mode-map)
0b18a8f6
RM
544 (setq major-mode 'compilation-mode
545 mode-name "Compilation")
546 (compilation-setup)
63a2daf6
SM
547 (set (make-local-variable 'font-lock-defaults)
548 '(compilation-mode-font-lock-keywords t))
0b18a8f6
RM
549 (run-hooks 'compilation-mode-hook))
550
551;; Prepare the buffer for the compilation parsing commands to work.
552(defun compilation-setup ()
553 ;; Make the buffer's mode line show process state.
ebf0b439 554 (setq mode-line-process '(":%s"))
d3cb357b
RM
555 (set (make-local-variable 'compilation-error-list) nil)
556 (set (make-local-variable 'compilation-old-error-list) nil)
557 (set (make-local-variable 'compilation-parsing-end) 1)
558 (set (make-local-variable 'compilation-directory-stack) nil)
0b18a8f6
RM
559 (setq compilation-last-buffer (current-buffer)))
560
561(defvar compilation-minor-mode nil
562 "Non-nil when in compilation-minor-mode.
563In this minor mode, all the error-parsing commands of the
564Compilation major mode are available.")
d6bd8dca 565(make-variable-buffer-local 'compilation-minor-mode)
0b18a8f6
RM
566
567(or (assq 'compilation-minor-mode minor-mode-alist)
568 (setq minor-mode-alist (cons '(compilation-minor-mode " Compilation")
569 minor-mode-alist)))
570(or (assq 'compilation-minor-mode minor-mode-map-alist)
4f6e4ad6
RS
571 (setq minor-mode-map-alist (cons (cons 'compilation-minor-mode
572 compilation-minor-mode-map)
0b18a8f6
RM
573 minor-mode-map-alist)))
574
d6bd8dca 575;;;###autoload
0b18a8f6
RM
576(defun compilation-minor-mode (&optional arg)
577 "Toggle compilation minor mode.
578With arg, turn compilation mode on if and only if arg is positive.
579See `compilation-mode'."
580 (interactive "P")
581 (if (setq compilation-minor-mode (if (null arg)
582 (null compilation-minor-mode)
583 (> (prefix-numeric-value arg) 0)))
584 (compilation-setup)))
55dfd2c4 585
fd5e58d7
RM
586;; Write msg in the current buffer and hack its mode-line-process.
587(defun compilation-handle-exit (process-status exit-status msg)
588 (let ((buffer-read-only nil)
589 (status (if compilation-exit-message-function
590 (funcall compilation-exit-message-function
591 process-status exit-status msg)
592 (cons msg exit-status)))
593 (omax (point-max))
594 (opoint (point)))
595 ;; Record where we put the message, so we can ignore it
596 ;; later on.
597 (goto-char omax)
598 (insert ?\n mode-name " " (car status))
599 (forward-char -1)
600 (insert " at " (substring (current-time-string) 0 19))
601 (forward-char 1)
52f84622 602 (setq mode-line-process (format ":%s [%s]" process-status (cdr status)))
fd5e58d7
RM
603 ;; Force mode line redisplay soon.
604 (force-mode-line-update)
605 (if (and opoint (< opoint omax))
606 (goto-char opoint))
607 (if compilation-finish-function
52f84622 608 (funcall compilation-finish-function (current-buffer) msg))))
fd5e58d7 609
55dfd2c4 610;; Called when compilation process changes state.
55dfd2c4 611(defun compilation-sentinel (proc msg)
d3cb357b
RM
612 "Sentinel for compilation buffers."
613 (let ((buffer (process-buffer proc)))
ebff767c
RM
614 (if (memq (process-status proc) '(signal exit))
615 (progn
616 (if (null (buffer-name buffer))
617 ;; buffer killed
618 (set-process-buffer proc nil)
fd5e58d7 619 (let ((obuf (current-buffer)))
ebff767c
RM
620 ;; save-excursion isn't the right thing if
621 ;; process-buffer is current-buffer
622 (unwind-protect
623 (progn
624 ;; Write something in the compilation buffer
625 ;; and hack its mode line.
626 (set-buffer buffer)
fd5e58d7
RM
627 (compilation-handle-exit (process-status proc)
628 (process-exit-status proc)
629 msg)
630 ;; Since the buffer and mode line will show that the
631 ;; process is dead, we can delete it now. Otherwise it
632 ;; will stay around until M-x list-processes.
633 (delete-process proc))
6c43f2f9 634 (set-buffer obuf))))
ebff767c
RM
635 (setq compilation-in-progress (delq proc compilation-in-progress))
636 ))))
55dfd2c4 637
ad62b7f1
RM
638(defun compilation-filter (proc string)
639 "Process filter for compilation buffers.
4f6e4ad6 640Just inserts the text, but uses `insert-before-markers'."
991c70f8 641 (if (buffer-name (process-buffer proc))
ad62b7f1 642 (save-excursion
991c70f8
RS
643 (set-buffer (process-buffer proc))
644 (let ((buffer-read-only nil))
645 (save-excursion
646 (goto-char (process-mark proc))
647 (insert-before-markers string)
d89793b7 648 (run-hooks 'compilation-filter-hook)
991c70f8 649 (set-marker (process-mark proc) (point)))))))
ad62b7f1 650
b5bb472e
RM
651;; Return the cdr of compilation-old-error-list for the error containing point.
652(defun compile-error-at-point ()
653 (compile-reinitialize-errors nil (point))
654 (let ((errors compilation-old-error-list))
655 (while (and errors
656 (> (point) (car (car errors))))
657 (setq errors (cdr errors)))
658 errors))
659
51ba27e7 660(defsubst compilation-buffer-p (buffer)
20c1daec
RM
661 (save-excursion
662 (set-buffer buffer)
663 (or compilation-minor-mode (eq major-mode 'compilation-mode))))
51ba27e7 664
646bd331
RM
665(defun compilation-next-error (n)
666 "Move point to the next error in the compilation buffer.
667Does NOT find the source line like \\[next-error]."
668 (interactive "p")
669 (or (compilation-buffer-p (current-buffer))
670 (error "Not in a compilation buffer."))
671 (setq compilation-last-buffer (current-buffer))
b5bb472e
RM
672
673 (let ((errors (compile-error-at-point)))
674
675 ;; Move to the error after the one containing point.
676 (goto-char (car (if (< n 0)
677 (let ((i 0)
678 (e compilation-old-error-list))
679 ;; See how many cdrs away ERRORS is from the start.
680 (while (not (eq e errors))
681 (setq i (1+ i)
682 e (cdr e)))
683 (if (> (- n) i)
684 (error "Moved back past first error")
685 (nth (+ i n) compilation-old-error-list)))
686 (let ((compilation-error-list (cdr errors)))
687 (compile-reinitialize-errors nil nil n)
688 (if compilation-error-list
689 (nth (1- n) compilation-error-list)
690 (error "Moved past last error"))))))))
646bd331
RM
691
692(defun compilation-previous-error (n)
693 "Move point to the previous error in the compilation buffer.
694Does NOT find the source line like \\[next-error]."
695 (interactive "p")
696 (compilation-next-error (- n)))
697
698
fc0094d7
RM
699;; Given an elt of `compilation-error-list', return an object representing
700;; the referenced file which is equal to (but not necessarily eq to) what
701;; this function would return for another error in the same file.
702(defsubst compilation-error-filedata (data)
b5bb472e
RM
703 (setq data (cdr data))
704 (if (markerp data)
fc0094d7 705 (marker-buffer data)
aead2f9f 706 (car data)))
b5bb472e 707
fc0094d7
RM
708;; Return a string describing a value from compilation-error-filedata.
709;; This value is not necessarily useful as a file name, but should be
710;; indicative to the user of what file's errors are being referred to.
711(defsubst compilation-error-filedata-file-name (filedata)
712 (if (bufferp filedata)
713 (buffer-file-name filedata)
714 (car filedata)))
715
b5bb472e
RM
716(defun compilation-next-file (n)
717 "Move point to the next error for a different file than the current one."
718 (interactive "p")
719 (or (compilation-buffer-p (current-buffer))
720 (error "Not in a compilation buffer."))
721 (setq compilation-last-buffer (current-buffer))
722
723 (let ((reversed (< n 0))
fc0094d7 724 errors filedata)
b5bb472e
RM
725
726 (if (not reversed)
727 (setq errors (or (compile-error-at-point)
728 (error "Moved past last error")))
729
730 ;; Get a reversed list of the errors up through the one containing point.
731 (compile-reinitialize-errors nil (point))
732 (setq errors (reverse compilation-old-error-list)
733 n (- n))
734
735 ;; Ignore errors after point. (car ERRORS) will be the error
736 ;; containing point, (cadr ERRORS) the one before it.
737 (while (and errors
738 (< (point) (car (car errors))))
739 (setq errors (cdr errors))))
740
741 (while (> n 0)
fc0094d7
RM
742 (setq filedata (compilation-error-filedata (car errors)))
743
744 ;; Skip past the following errors for this file.
745 (while (equal filedata
746 (compilation-error-filedata
747 (car (or errors
748 (if reversed
749 (error "%s the first erring file"
750 (compilation-error-filedata-file-name
751 filedata))
752 (let ((compilation-error-list nil))
753 ;; Parse some more.
754 (compile-reinitialize-errors nil nil 2)
755 (setq errors compilation-error-list)))
501cf428 756 (error "%s is the last erring file"
fc0094d7
RM
757 (compilation-error-filedata-file-name
758 filedata))))))
b5bb472e
RM
759 (setq errors (cdr errors)))
760
761 (setq n (1- n)))
762
763 ;; Move to the following error.
764 (goto-char (car (car (or errors
765 (if reversed
766 (error "This is the first erring file")
767 (let ((compilation-error-list nil))
768 ;; Parse the last one.
769 (compile-reinitialize-errors nil nil 1)
770 compilation-error-list))))))))
771
772(defun compilation-previous-file (n)
773 "Move point to the previous error for a different file than the current one."
774 (interactive "p")
775 (compilation-next-file (- n)))
776
777
55dfd2c4
RS
778(defun kill-compilation ()
779 "Kill the process made by the \\[compile] command."
780 (interactive)
d3cb357b 781 (let ((buffer (compilation-find-buffer)))
55dfd2c4 782 (if (get-buffer-process buffer)
d3cb357b
RM
783 (interrupt-process (get-buffer-process buffer))
784 (error "The compilation process is not running."))))
785
55dfd2c4 786
d3cb357b
RM
787;; Parse any new errors in the compilation buffer,
788;; or reparse from the beginning if the user has asked for that.
eaa3cac5
RM
789(defun compile-reinitialize-errors (reparse
790 &optional limit-search find-at-least)
d3cb357b
RM
791 (save-excursion
792 (set-buffer compilation-last-buffer)
793 ;; If we are out of errors, or if user says "reparse",
794 ;; discard the info we have, to force reparsing.
795 (if (or (eq compilation-error-list t)
eaa3cac5 796 reparse)
51ba27e7 797 (compilation-forget-errors))
c540863c 798 (if (and compilation-error-list
b5bb472e
RM
799 (or (not limit-search)
800 (> compilation-parsing-end limit-search))
c540863c 801 (or (not find-at-least)
a72ba929 802 (>= (length compilation-error-list) find-at-least)))
d3cb357b
RM
803 ;; Since compilation-error-list is non-nil, it points to a specific
804 ;; error the user wanted. So don't move it around.
805 nil
51ba27e7
RM
806 ;; This was here for a long time (before my rewrite); why? --roland
807 ;;(switch-to-buffer compilation-last-buffer)
55dfd2c4 808 (set-buffer-modified-p nil)
b5bb472e 809 (if (< compilation-parsing-end (point-max))
51ba27e7 810 ;; compilation-error-list might be non-nil if we have a non-nil
676a14e1 811 ;; LIMIT-SEARCH or FIND-AT-LEAST arg. In that case its value
51ba27e7
RM
812 ;; records the current position in the error list, and we must
813 ;; preserve that after reparsing.
814 (let ((error-list-pos compilation-error-list))
b5bb472e 815 (funcall compilation-parse-errors-function
51ba27e7
RM
816 limit-search
817 (and find-at-least
818 ;; We only need enough new parsed errors to reach
819 ;; FIND-AT-LEAST errors past the current
820 ;; position.
821 (- find-at-least (length compilation-error-list))))
822 ;; Remember the entire list for compilation-forget-errors. If
823 ;; this is an incremental parse, append to previous list. If
824 ;; we are parsing anew, compilation-forget-errors cleared
825 ;; compilation-old-error-list above.
826 (setq compilation-old-error-list
827 (nconc compilation-old-error-list compilation-error-list))
828 (if error-list-pos
829 ;; We started in the middle of an existing list of parsed
830 ;; errors before parsing more; restore that position.
831 (setq compilation-error-list error-list-pos))
b5bb472e 832 )))))
55dfd2c4 833
f98494a4
RS
834(defun compile-mouse-goto-error (event)
835 (interactive "e")
e78e10ca
KH
836 (save-excursion
837 (set-buffer (window-buffer (posn-window (event-end event))))
838 (goto-char (posn-point (event-end event)))
839
840 (or (compilation-buffer-p (current-buffer))
841 (error "Not in a compilation buffer."))
842 (setq compilation-last-buffer (current-buffer))
843 (compile-reinitialize-errors nil (point))
844
845 ;; Move to bol; the marker for the error on this line will point there.
846 (beginning-of-line)
847
848 ;; Move compilation-error-list to the elt of compilation-old-error-list
849 ;; we want.
850 (setq compilation-error-list compilation-old-error-list)
851 (while (and compilation-error-list
852 (> (point) (car (car compilation-error-list))))
853 (setq compilation-error-list (cdr compilation-error-list)))
854 (or compilation-error-list
855 (error "No error to go to")))
856 (select-window (posn-window (event-end event)))
857 ;; Move to another window, so that next-error's window changes
858 ;; result in the desired setup.
859 (or (one-window-p)
860 (progn
861 (other-window -1)
862 ;; other-window changed the selected buffer,
863 ;; but we didn't want to do that.
864 (set-buffer compilation-last-buffer)))
865
866 (push-mark)
867 (next-error 1))
f98494a4 868
55dfd2c4
RS
869(defun compile-goto-error (&optional argp)
870 "Visit the source for the error message point is on.
31efa7c9 871Use this command in a compilation log buffer. Sets the mark at point there.
b2bb6ec8 872\\[universal-argument] as a prefix arg means to reparse the buffer's error messages first;
55dfd2c4
RS
873other kinds of prefix arguments are ignored."
874 (interactive "P")
d3cb357b
RM
875 (or (compilation-buffer-p (current-buffer))
876 (error "Not in a compilation buffer."))
877 (setq compilation-last-buffer (current-buffer))
eaa3cac5 878 (compile-reinitialize-errors (consp argp) (point))
646bd331 879
15d1a8da
RM
880 ;; Move to bol; the marker for the error on this line will point there.
881 (beginning-of-line)
882
646bd331 883 ;; Move compilation-error-list to the elt of compilation-old-error-list
643f763f 884 ;; we want.
646bd331 885 (setq compilation-error-list compilation-old-error-list)
643f763f
RM
886 (while (and compilation-error-list
887 (> (point) (car (car compilation-error-list))))
646bd331
RM
888 (setq compilation-error-list (cdr compilation-error-list)))
889
55dfd2c4
RS
890 ;; Move to another window, so that next-error's window changes
891 ;; result in the desired setup.
892 (or (one-window-p)
646bd331
RM
893 (progn
894 (other-window -1)
895 ;; other-window changed the selected buffer,
896 ;; but we didn't want to do that.
897 (set-buffer compilation-last-buffer)))
898
31efa7c9 899 (push-mark)
643f763f 900 (next-error 1))
55dfd2c4 901
d3cb357b
RM
902;; Return a compilation buffer.
903;; If the current buffer is a compilation buffer, return it.
904;; If compilation-last-buffer is set to a live buffer, use that.
905;; Otherwise, look for a compilation buffer and signal an error
906;; if there are none.
4746118a
JB
907(defun compilation-find-buffer (&optional other-buffer)
908 (if (and (not other-buffer)
909 (compilation-buffer-p (current-buffer)))
d3cb357b
RM
910 ;; The current buffer is a compilation buffer.
911 (current-buffer)
4746118a
JB
912 (if (and compilation-last-buffer (buffer-name compilation-last-buffer)
913 (or (not other-buffer) (not (eq compilation-last-buffer
914 (current-buffer)))))
d3cb357b
RM
915 compilation-last-buffer
916 (let ((buffers (buffer-list)))
4746118a
JB
917 (while (and buffers (or (not (compilation-buffer-p (car buffers)))
918 (and other-buffer
919 (eq (car buffers) (current-buffer)))))
d3cb357b
RM
920 (setq buffers (cdr buffers)))
921 (if buffers
922 (car buffers)
4746118a
JB
923 (or (and other-buffer
924 (compilation-buffer-p (current-buffer))
925 ;; The current buffer is a compilation buffer.
926 (progn
927 (if other-buffer
928 (message "This is the only compilation buffer."))
929 (current-buffer)))
930 (error "No compilation started!")))))))
d3cb357b
RM
931
932;;;###autoload
55dfd2c4
RS
933(defun next-error (&optional argp)
934 "Visit next compilation error message and corresponding source code.
935This operates on the output from the \\[compile] command.
936If all preparsed error messages have been processed,
937the error message buffer is checked for new ones.
938
939A prefix arg specifies how many error messages to move;
940negative means move back to previous error messages.
941Just C-u as a prefix means reparse the error message buffer
942and start at the first error.
943
944\\[next-error] normally applies to the most recent compilation started,
945but as long as you are in the middle of parsing errors from one compilation
946output buffer, you stay with that compilation output buffer.
947
948Use \\[next-error] in a compilation output buffer to switch to
949processing errors from that compilation.
950
d3cb357b
RM
951See variables `compilation-parse-errors-function' and
952\`compilation-error-regexp-alist' for customization ideas."
55dfd2c4 953 (interactive "P")
d3cb357b 954 (setq compilation-last-buffer (compilation-find-buffer))
eaa3cac5
RM
955 (compilation-goto-locus (compilation-next-error-locus
956 ;; We want to pass a number here only if
957 ;; we got a numeric prefix arg, not just C-u.
958 (and (not (consp argp))
959 (prefix-numeric-value argp))
960 (consp argp))))
961;;;###autoload (define-key ctl-x-map "`" 'next-error)
962
e60476ca
RS
963(defun previous-error ()
964 "Visit previous compilation error message and corresponding source code.
965This operates on the output from the \\[compile] command."
966 (interactive)
eae2c972 967 (next-error -1))
e60476ca
RS
968
969(defun first-error ()
970 "Reparse the error message buffer and start at the first error
971Visit corresponding source code.
972This operates on the output from the \\[compile] command."
973 (interactive)
eae2c972 974 (next-error '(4)))
e60476ca 975
b4300a1a 976(defun compilation-next-error-locus (&optional move reparse silent)
eaa3cac5
RM
977 "Visit next compilation error and return locus in corresponding source code.
978This operates on the output from the \\[compile] command.
979If all preparsed error messages have been processed,
980the error message buffer is checked for new ones.
981
982Returns a cons (ERROR . SOURCE) of two markers: ERROR is a marker at the
983location of the error message in the compilation buffer, and SOURCE is a
984marker at the location in the source code indicated by the error message.
985
986Optional first arg MOVE says how many error messages to move forwards (or
987backwards, if negative); default is 1. Optional second arg REPARSE, if
988non-nil, says to reparse the error message buffer and reset to the first
501cf428 989error (plus MOVE - 1). If optional third argument SILENT is non-nil, return
b4300a1a 990nil instead of raising an error if there are no more errors.
eaa3cac5
RM
991
992The current buffer should be the desired compilation output buffer."
993 (or move (setq move 1))
994 (compile-reinitialize-errors reparse nil (and (not reparse)
995 (if (< move 1) 0 (1- move))))
d3cb357b 996 (let (next-errors next-error)
7fb63acd
RS
997 (catch 'no-next-error
998 (save-excursion
999 (set-buffer compilation-last-buffer)
1000 ;; compilation-error-list points to the "current" error.
501cf428 1001 (setq next-errors
7fb63acd
RS
1002 (if (> move 0)
1003 (nthcdr (1- move)
1004 compilation-error-list)
1005 ;; Zero or negative arg; we need to move back in the list.
1006 (let ((n (1- move))
1007 (i 0)
1008 (e compilation-old-error-list))
1009 ;; See how many cdrs away the current error is from the start.
1010 (while (not (eq e compilation-error-list))
1011 (setq i (1+ i)
1012 e (cdr e)))
1013 (if (> (- n) i)
1014 (error "Moved back past first error")
1015 (nthcdr (+ i n) compilation-old-error-list))))
1016 next-error (car next-errors))
1017 (while
1018 (if (null next-error)
1019 (progn
1020 (and move (/= move 1)
1021 (error (if (> move 0)
1022 "Moved past last error")
1023 "Moved back past first error"))
1024 ;; Forget existing error messages if compilation has finished.
1025 (if (not (and (get-buffer-process (current-buffer))
1026 (eq (process-status
1027 (get-buffer-process
1028 (current-buffer)))
1029 'run)))
1030 (compilation-forget-errors))
1031 (if silent
1032 (throw 'no-next-error nil)
1033 (error (concat compilation-error-message
1034 (and (get-buffer-process (current-buffer))
1035 (eq (process-status
1036 (get-buffer-process
1037 (current-buffer)))
1038 'run)
b4300a1a 1039 " yet")))))
7fb63acd
RS
1040 (setq compilation-error-list (cdr next-errors))
1041 (if (null (cdr next-error))
1042 ;; This error is boring. Go to the next.
1043 t
1044 (or (markerp (cdr next-error))
1045 ;; This error has a filename/lineno pair.
1046 ;; Find the file and turn it into a marker.
1047 (let* ((fileinfo (car (cdr next-error)))
20c1daec
RM
1048 (buffer (apply 'compilation-find-file
1049 (car next-error) fileinfo)))
7fb63acd
RS
1050 (if (null buffer)
1051 ;; We can't find this error's file.
1052 ;; Remove all errors in the same file.
1053 (progn
1054 (setq next-errors compilation-old-error-list)
1055 (while next-errors
1056 (and (consp (cdr (car next-errors)))
1057 (equal (car (cdr (car next-errors)))
1058 fileinfo)
1059 (progn
1060 (set-marker (car (car next-errors)) nil)
1061 (setcdr (car next-errors) nil)))
1062 (setq next-errors (cdr next-errors)))
1063 ;; Look for the next error.
1064 t)
1065 ;; We found the file. Get a marker for this error.
1066 ;; compilation-old-error-list is a buffer-local
1067 ;; variable, so we must be careful to extract its value
1068 ;; before switching to the source file buffer.
1069 (let ((errors compilation-old-error-list)
1070 (last-line (nth 1 (cdr next-error)))
1071 (column (nth 2 (cdr next-error))))
1072 (set-buffer buffer)
1073 (save-excursion
1074 (save-restriction
1075 (widen)
1076 (goto-line last-line)
4dbf8a2c 1077 (if (and column (> column 0))
4ad26d84
RM
1078 ;; Columns in error msgs are 1-origin.
1079 (move-to-column (1- column))
7fb63acd
RS
1080 (beginning-of-line))
1081 (setcdr next-error (point-marker))
1082 ;; Make all the other error messages referring
1083 ;; to the same file have markers into the buffer.
1084 (while errors
1085 (and (consp (cdr (car errors)))
1086 (equal (car (cdr (car errors))) fileinfo)
1087 (let* ((this (nth 1 (cdr (car errors))))
1088 (column (nth 2 (cdr (car errors))))
1089 (lines (- this last-line)))
1090 (if (eq selective-display t)
1091 ;; When selective-display is t,
1092 ;; each C-m is a line boundary,
1093 ;; as well as each newline.
1094 (if (< lines 0)
1095 (re-search-backward "[\n\C-m]"
1096 nil 'end
1097 (- lines))
1098 (re-search-forward "[\n\C-m]"
1099 nil 'end
1100 lines))
1101 (forward-line lines))
eae2c972
RM
1102 (if (and column (> column 1))
1103 (move-to-column (1- column))
1104 (beginning-of-line))
7fb63acd
RS
1105 (setq last-line this)
1106 (setcdr (car errors) (point-marker))))
1107 (setq errors (cdr errors)))))))))
1108 ;; If we didn't get a marker for this error, or this
1109 ;; marker's buffer was killed, go on to the next one.
1110 (or (not (markerp (cdr next-error)))
1111 (not (marker-buffer (cdr next-error))))))
1112 (setq next-errors compilation-error-list
b4300a1a 1113 next-error (car next-errors)))))
d3cb357b
RM
1114
1115 ;; Skip over multiple error messages for the same source location,
1116 ;; so the next C-x ` won't go to an error in the same place.
1117 (while (and compilation-error-list
1118 (equal (cdr (car compilation-error-list)) (cdr next-error)))
1119 (setq compilation-error-list (cdr compilation-error-list)))
1120
eaa3cac5
RM
1121 ;; We now have a marker for the position of the error source code.
1122 ;; NEXT-ERROR is a cons (ERROR . SOURCE) of two markers.
1123 next-error))
1124
1125(defun compilation-goto-locus (next-error)
1126 "Jump to an error locus returned by `compilation-next-error-locus'.
1127Takes one argument, a cons (ERROR . SOURCE) of two markers.
1128Selects a window with point at SOURCE, with another window displaying ERROR."
e89a7d77
RS
1129 (if (and (window-dedicated-p (selected-window))
1130 (eq (selected-window) (frame-root-window)))
1131 (switch-to-buffer-other-frame (marker-buffer (cdr next-error)))
1132 (switch-to-buffer (marker-buffer (cdr next-error))))
eaa3cac5
RM
1133 (goto-char (cdr next-error))
1134 ;; If narrowing got in the way of
1135 ;; going to the right place, widen.
1136 (or (= (point) (marker-position (cdr next-error)))
1137 (progn
1138 (widen)
1139 (goto-char (cdr next-error))))
1140
1141 ;; Show compilation buffer in other window, scrolled to this error.
1142 (let* ((pop-up-windows t)
eae2c972 1143 ;; Use an existing window if it is in a visible frame.
c94b02d6 1144 (w (or (get-buffer-window (marker-buffer (car next-error)) 'visible)
eae2c972 1145 ;; Pop up a window.
c94b02d6 1146 (display-buffer (marker-buffer (car next-error))))))
eaa3cac5 1147 (set-window-point w (car next-error))
c94b02d6
RS
1148 (set-window-start w (car next-error))
1149 (compilation-set-window-height w)))
eaa3cac5 1150\f
d3cb357b
RM
1151;; Find a buffer for file FILENAME.
1152;; Search the directories in compilation-search-path.
1153;; A nil in compilation-search-path means to try the
1154;; current directory, which is passed in DIR.
1155;; If FILENAME is not found at all, ask the user where to find it.
1156;; Pop up the buffer containing MARKER and scroll to MARKER if we ask the user.
20c1daec
RM
1157(defun compilation-find-file (marker filename dir &rest formats)
1158 (or formats (setq formats '("%s")))
d3cb357b 1159 (let ((dirs compilation-search-path)
cd494de4
RM
1160 buffer thisdir fmts name)
1161 (if (file-name-absolute-p filename)
1162 ;; The file name is absolute. Use its explicit directory as
1163 ;; the first in the search path, and strip it from FILENAME.
1164 (setq filename (abbreviate-file-name (expand-file-name filename))
1165 dirs (cons (file-name-directory filename) dirs)
1166 filename (file-name-nondirectory filename)))
1167 ;; Now search the path.
1168 (while (and dirs (null buffer))
20c1daec
RM
1169 (setq thisdir (or (car dirs) dir)
1170 fmts formats)
cd494de4
RM
1171 ;; For each directory, try each format string.
1172 (while (and fmts (null buffer))
20c1daec 1173 (setq name (expand-file-name (format (car fmts) filename) thisdir)
cd494de4 1174 buffer (and (file-exists-p name)
20c1daec
RM
1175 (find-file-noselect name))
1176 fmts (cdr fmts)))
1177 (setq dirs (cdr dirs)))
cd494de4 1178 (or buffer
d3cb357b
RM
1179 ;; The file doesn't exist.
1180 ;; Ask the user where to find it.
1181 ;; If he hits C-g, then the next time he does
1182 ;; next-error, he'll skip past it.
cd494de4
RM
1183 (let* ((pop-up-windows t)
1184 (w (display-buffer (marker-buffer marker))))
1185 (set-window-point w marker)
1186 (set-window-start w marker)
1187 (let ((name (expand-file-name
1188 (read-file-name
1189 (format "Find this error in: (default %s) "
1190 filename)
1191 dir filename t))))
1192 (if (file-directory-p name)
1193 (setq name (expand-file-name filename name)))
1194 (and (file-exists-p name)
1195 (find-file-noselect name)))))))
d3cb357b
RM
1196
1197;; Set compilation-error-list to nil, and unchain the markers that point to the
1198;; error messages and their text, so that they no longer slow down gap motion.
1199;; This would happen anyway at the next garbage collection, but it is better to
646bd331 1200;; do it right away.
55dfd2c4
RS
1201(defun compilation-forget-errors ()
1202 (while compilation-old-error-list
1203 (let ((next-error (car compilation-old-error-list)))
1204 (set-marker (car next-error) nil)
d3cb357b
RM
1205 (if (markerp (cdr next-error))
1206 (set-marker (cdr next-error) nil)))
55dfd2c4 1207 (setq compilation-old-error-list (cdr compilation-old-error-list)))
bd3910fe 1208 (setq compilation-error-list nil
51ba27e7
RM
1209 compilation-directory-stack nil
1210 compilation-parsing-end 1))
d3cb357b
RM
1211
1212
1213(defun count-regexp-groupings (regexp)
1214 "Return the number of \\( ... \\) groupings in REGEXP (a string)."
1215 (let ((groupings 0)
1216 (len (length regexp))
1217 (i 0)
1218 c)
1219 (while (< i len)
1220 (setq c (aref regexp i)
1221 i (1+ i))
1222 (cond ((= c ?\[)
1223 ;; Find the end of this [...].
1224 (while (and (< i len)
1225 (not (= (aref regexp i) ?\])))
1226 (setq i (1+ i))))
1227 ((= c ?\\)
1228 (if (< i len)
1229 (progn
1230 (setq c (aref regexp i)
1231 i (1+ i))
1232 (if (= c ?\))
1233 ;; We found the end of a grouping,
1234 ;; so bump our counter.
1235 (setq groupings (1+ groupings))))))))
1236 groupings))
55dfd2c4 1237
c540863c 1238(defun compilation-parse-errors (limit-search find-at-least)
55dfd2c4 1239 "Parse the current buffer as grep, cc or lint error messages.
d3cb357b 1240See variable `compilation-parse-errors-function' for the interface it uses."
55dfd2c4
RS
1241 (setq compilation-error-list nil)
1242 (message "Parsing error messages...")
51501e54 1243 (let (text-buffer orig orig-expanded parent-expanded
d3cb357b 1244 regexp enter-group leave-group error-group
b2bb6ec8 1245 alist subexpr error-regexp-groups
c540863c 1246 (found-desired nil)
6c43f2f9 1247 (compilation-num-errors-found 0))
d3cb357b 1248
55dfd2c4
RS
1249 ;; Don't reparse messages already seen at last parse.
1250 (goto-char compilation-parsing-end)
1251 ;; Don't parse the first two lines as error messages.
1252 ;; This matters for grep.
1253 (if (bobp)
2e4301ef
RM
1254 (progn
1255 (forward-line 2)
1256 ;; Move back so point is before the newline.
1257 ;; This matters because some error regexps use \n instead of ^
1258 ;; to be faster.
1259 (forward-char -1)))
d3cb357b
RM
1260
1261 ;; Compile all the regexps we want to search for into one.
1262 (setq regexp (concat "\\(" compilation-enter-directory-regexp "\\)\\|"
1263 "\\(" compilation-leave-directory-regexp "\\)\\|"
1264 "\\(" (mapconcat (function
1265 (lambda (elt)
1266 (concat "\\(" (car elt) "\\)")))
1267 compilation-error-regexp-alist
1268 "\\|") "\\)"))
1269
1270 ;; Find out how many \(...\) groupings are in each of the regexps, and set
1271 ;; *-GROUP to the grouping containing each constituent regexp (whose
1272 ;; subgroups will come immediately thereafter) of the big regexp we have
1273 ;; just constructed.
1274 (setq enter-group 1
1275 leave-group (+ enter-group
1276 (count-regexp-groupings
1277 compilation-enter-directory-regexp)
1278 1)
1279 error-group (+ leave-group
1280 (count-regexp-groupings
1281 compilation-leave-directory-regexp)
1282 1))
1283
72244bea
RM
1284 ;; Compile an alist (IDX FILE LINE [COL]), where IDX is the number of
1285 ;; the subexpression for an entire error-regexp, and FILE and LINE (and
1286 ;; possibly COL) are the numbers for the subexpressions giving the file
1287 ;; name and line number (and possibly column number).
d4035a26
RM
1288 (setq alist (or compilation-error-regexp-alist
1289 (error "compilation-error-regexp-alist is empty!"))
d3cb357b
RM
1290 subexpr (1+ error-group))
1291 (while alist
72244bea
RM
1292 (setq error-regexp-groups
1293 (cons (list subexpr
1294 (+ subexpr (nth 1 (car alist)))
1295 (+ subexpr (nth 2 (car alist)))
8425a49a
RM
1296 (and (nth 3 (car alist))
1297 (+ subexpr (nth 3 (car alist)))))
72244bea 1298 error-regexp-groups))
d3cb357b
RM
1299 (setq subexpr (+ subexpr 1 (count-regexp-groupings (car (car alist)))))
1300 (setq alist (cdr alist)))
1301
cd494de4
RM
1302 ;; Set up now the expanded, abbreviated directory variables
1303 ;; that compile-abbreviate-directory will need, so we can
1304 ;; compute them just once here.
1305 (setq orig (abbreviate-file-name default-directory)
1306 orig-expanded (abbreviate-file-name
1307 (file-truename default-directory))
1308 parent-expanded (abbreviate-file-name
1309 (expand-file-name "../" orig-expanded)))
51501e54 1310
646bd331 1311 (while (and (not found-desired)
b2bb6ec8
RM
1312 ;; We don't just pass LIMIT-SEARCH to re-search-forward
1313 ;; because we want to find matches containing LIMIT-SEARCH
1314 ;; but which extend past it.
646bd331 1315 (re-search-forward regexp nil t))
dadb11fb 1316
d3cb357b
RM
1317 ;; Figure out which constituent regexp matched.
1318 (cond ((match-beginning enter-group)
1319 ;; The match was the enter-directory regexp.
1320 (let ((dir
1321 (file-name-as-directory
1322 (expand-file-name
1323 (buffer-substring (match-beginning (+ enter-group 1))
1324 (match-end (+ enter-group 1)))))))
51501e54
RS
1325 ;; The directory name in the "entering" message
1326 ;; is a truename. Try to convert it to a form
1327 ;; like what the user typed in.
1328 (setq dir
1329 (compile-abbreviate-directory dir orig orig-expanded
1330 parent-expanded))
d3cb357b
RM
1331 (setq compilation-directory-stack
1332 (cons dir compilation-directory-stack))
1333 (and (file-directory-p dir)
51ba27e7
RM
1334 (setq default-directory dir)))
1335
1336 (and limit-search (>= (point) limit-search)
1337 ;; The user wanted a specific error, and we're past it.
1338 ;; We do this check here (and in the leave-group case)
1339 ;; rather than at the end of the loop because if the last
1340 ;; thing seen is an error message, we must carefully
1341 ;; discard the last error when it is the first in a new
1342 ;; file (see below in the error-group case).
1343 (setq found-desired t)))
1344
d3cb357b
RM
1345 ((match-beginning leave-group)
1346 ;; The match was the leave-directory regexp.
1347 (let ((beg (match-beginning (+ leave-group 1)))
1348 (stack compilation-directory-stack))
1349 (if beg
1350 (let ((dir
1351 (file-name-as-directory
1352 (expand-file-name
1353 (buffer-substring beg
1354 (match-end (+ leave-group
1355 1)))))))
cd494de4 1356 ;; The directory name in the "leaving" message
51501e54
RS
1357 ;; is a truename. Try to convert it to a form
1358 ;; like what the user typed in.
1359 (setq dir
1360 (compile-abbreviate-directory dir orig orig-expanded
1361 parent-expanded))
d3cb357b
RM
1362 (while (and stack
1363 (not (string-equal (car stack) dir)))
1364 (setq stack (cdr stack)))))
1365 (setq compilation-directory-stack (cdr stack))
1366 (setq stack (car compilation-directory-stack))
1367 (if stack
1368 (setq default-directory stack))
51ba27e7
RM
1369 )
1370
1371 (and limit-search (>= (point) limit-search)
1372 ;; The user wanted a specific error, and we're past it.
1373 ;; We do this check here (and in the enter-group case)
1374 ;; rather than at the end of the loop because if the last
1375 ;; thing seen is an error message, we must carefully
1376 ;; discard the last error when it is the first in a new
1377 ;; file (see below in the error-group case).
1378 (setq found-desired t)))
1379
d3cb357b
RM
1380 ((match-beginning error-group)
1381 ;; The match was the composite error regexp.
1382 ;; Find out which individual regexp matched.
1383 (setq alist error-regexp-groups)
1384 (while (and alist
1385 (null (match-beginning (car (car alist)))))
1386 (setq alist (cdr alist)))
1387 (if alist
1388 (setq alist (car alist))
d4035a26 1389 (error "compilation-parse-errors: impossible regexp match!"))
501cf428 1390
d3cb357b 1391 ;; Extract the file name and line number from the error message.
1f82d0e4 1392 (let ((beginning-of-match (match-beginning 0)) ;looking-at nukes
1e0e614d
RM
1393 (filename (buffer-substring (match-beginning (nth 1 alist))
1394 (match-end (nth 1 alist))))
72244bea
RM
1395 (linenum (string-to-int
1396 (buffer-substring
1397 (match-beginning (nth 2 alist))
1398 (match-end (nth 2 alist)))))
1399 (column (and (nth 3 alist)
08b1edf4 1400 (match-beginning (nth 3 alist))
72244bea
RM
1401 (string-to-int
1402 (buffer-substring
1403 (match-beginning (nth 3 alist))
1404 (match-end (nth 3 alist)))))))
1405
1e0e614d
RM
1406 ;; Check for a comint-file-name-prefix and prepend it if
1407 ;; appropriate. (This is very useful for
1408 ;; compilation-minor-mode in an rlogin-mode buffer.)
1409 (and (boundp 'comint-file-name-prefix)
1410 ;; If the file name is relative, default-directory will
1411 ;; already contain the comint-file-name-prefix (done by
1412 ;; compile-abbreviate-directory).
1413 (file-name-absolute-p filename)
1414 (setq filename (concat comint-file-name-prefix filename)))
20c1daec
RM
1415 (setq filename (cons filename (cons default-directory
1416 (nthcdr 4 alist))))
501cf428 1417
1e0e614d 1418
d3cb357b
RM
1419 ;; Locate the erring file and line.
1420 ;; Cons a new elt onto compilation-error-list,
1421 ;; giving a marker for the current compilation buffer
1422 ;; location, and the file and line number of the error.
1423 (save-excursion
eae2c972
RM
1424 ;; Save as the start of the error the beginning of the
1425 ;; line containing the match unless the match starts at a
1426 ;; newline, in which case the beginning of the next line.
1427 (goto-char beginning-of-match)
1428 (forward-line (if (eolp) 1 0))
ba2700db 1429 (let ((this (cons (point-marker)
533304f8 1430 (list filename linenum column))))
ba2700db
RS
1431 ;; Don't add the same source line more than once.
1432 (if (equal (cdr this) (cdr (car compilation-error-list)))
1433 nil
1434 (setq compilation-error-list
1435 (cons this
1436 compilation-error-list))
1437 (setq compilation-num-errors-found
1438 (1+ compilation-num-errors-found)))))
51ba27e7
RM
1439 (and (or (and find-at-least (> compilation-num-errors-found
1440 find-at-least))
1441 (and limit-search (>= (point) limit-search)))
1442 ;; We have found as many new errors as the user wants,
1443 ;; or past the buffer position he indicated. We
1444 ;; continue to parse until we have seen all the
1445 ;; consecutive errors in the same file, so the error
1446 ;; positions will be recorded as markers in this buffer
1447 ;; that might change.
1f82d0e4
RM
1448 (cdr compilation-error-list) ; Must check at least two.
1449 (not (equal (car (cdr (nth 0 compilation-error-list)))
1450 (car (cdr (nth 1 compilation-error-list)))))
1451 (progn
1452 ;; Discard the error just parsed, so that the next
1453 ;; parsing run can get it and the following errors in
1454 ;; the same file all at once. If we didn't do this, we
1455 ;; would have the same problem we are trying to avoid
1456 ;; with the test above, just delayed until the next run!
1457 (setq compilation-error-list
1458 (cdr compilation-error-list))
1459 (goto-char beginning-of-match)
1460 (setq found-desired t)))
1461 )
41acdfa9 1462 )
d3cb357b 1463 (t
d4035a26 1464 (error "compilation-parse-errors: known groups didn't match!")))
dadb11fb 1465
51ba27e7 1466 (message "Parsing error messages...%d (%.0f%% of buffer)"
6c43f2f9 1467 compilation-num-errors-found
51ba27e7
RM
1468 ;; Use floating-point because (* 100 (point)) frequently
1469 ;; exceeds the range of Emacs Lisp integers.
1470 (/ (* 100.0 (point)) (point-max)))
dadb11fb 1471
b2bb6ec8
RM
1472 (and limit-search (>= (point) limit-search)
1473 ;; The user wanted a specific error, and we're past it.
1474 (setq found-desired t)))
c540863c
RM
1475 (setq compilation-parsing-end (if found-desired
1476 (point)
1477 ;; We have searched the whole buffer.
1478 (point-max))))
1479 (setq compilation-error-list (nreverse compilation-error-list))
1480 (message "Parsing error messages...done"))
55dfd2c4 1481
51501e54
RS
1482;; If directory DIR is a subdir of ORIG or of ORIG's parent,
1483;; return a relative name for it starting from ORIG or its parent.
1484;; ORIG-EXPANDED is an expanded version of ORIG.
1485;; PARENT-EXPANDED is an expanded version of ORIG's parent.
1486;; Those two args could be computed here, but we run faster by
1487;; having the caller compute them just once.
1488(defun compile-abbreviate-directory (dir orig orig-expanded parent-expanded)
cd494de4
RM
1489 ;; Apply canonical abbreviations to DIR first thing.
1490 ;; Those abbreviations are already done in the other arguments passed.
1491 (setq dir (abbreviate-file-name dir))
1492
1e0e614d
RM
1493 ;; Check for a comint-file-name-prefix and prepend it if appropriate.
1494 ;; (This is very useful for compilation-minor-mode in an rlogin-mode
1495 ;; buffer.)
1496 (if (boundp 'comint-file-name-prefix)
1497 (setq dir (concat comint-file-name-prefix dir)))
1498
51501e54
RS
1499 (if (and (> (length dir) (length orig-expanded))
1500 (string= orig-expanded
1501 (substring dir 0 (length orig-expanded))))
1502 (setq dir
1503 (concat orig
1504 (substring dir (length orig-expanded)))))
1505 (if (and (> (length dir) (length parent-expanded))
1506 (string= parent-expanded
1507 (substring dir 0 (length parent-expanded))))
1508 (setq dir
1509 (concat (file-name-directory
1510 (directory-file-name orig))
1511 (substring dir (length parent-expanded)))))
1512 dir)
1513
4746118a 1514(provide 'compile)
fad160d5
ER
1515
1516;;; compile.el ends here