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