Another minor fix for next-single-char-property-change.
[emacs.git] / lisp / progmodes / compile.el
blobd477569fb2d677e6df2c22e2c57c073bc56f28f1
1 ;;; compile.el --- run compiler as inferior of Emacs, parse error messages
3 ;; Copyright (C) 1985-1987, 1993-1999, 2001-2012
4 ;; Free Software Foundation, Inc.
6 ;; Authors: Roland McGrath <roland@gnu.org>,
7 ;; Daniel Pfeiffer <occitan@esperanto.org>
8 ;; Maintainer: FSF
9 ;; Keywords: tools, processes
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; This package provides the compile facilities documented in the Emacs user's
29 ;; manual.
31 ;;; Code:
33 (eval-when-compile (require 'cl))
34 (require 'tool-bar)
35 (require 'comint)
37 (defgroup compilation nil
38 "Run compiler as inferior of Emacs, parse error messages."
39 :group 'tools
40 :group 'processes)
43 ;;;###autoload
44 (defcustom compilation-mode-hook nil
45 "List of hook functions run by `compilation-mode' (see `run-mode-hooks')."
46 :type 'hook
47 :group 'compilation)
49 ;;;###autoload
50 (defcustom compilation-start-hook nil
51 "List of hook functions run by `compilation-start' on the compilation process.
52 \(See `run-hook-with-args').
53 If you use \"omake -P\" and do not want \\[save-buffers-kill-terminal] to ask whether you want
54 the compilation to be killed, you can use this hook:
55 (add-hook 'compilation-start-hook
56 (lambda (process) (set-process-query-on-exit-flag process nil)) nil t)"
57 :type 'hook
58 :group 'compilation)
60 ;;;###autoload
61 (defcustom compilation-window-height nil
62 "Number of lines in a compilation window. If nil, use Emacs default."
63 :type '(choice (const :tag "Default" nil)
64 integer)
65 :group 'compilation)
67 (defvar compilation-filter-hook nil
68 "Hook run after `compilation-filter' has inserted a string into the buffer.
69 It is called with the variable `compilation-filter-start' bound
70 to the position of the start of the inserted text, and point at
71 its end.
73 If Emacs lacks asynchronous process support, this hook is run
74 after `call-process' inserts the grep output into the buffer.")
76 (defvar compilation-filter-start nil
77 "Start of the text inserted by `compilation-filter'.
78 This is bound to a buffer position before running `compilation-filter-hook'.")
80 (defvar compilation-first-column 1
81 "*This is how compilers number the first column, usually 1 or 0.")
83 (defvar compilation-parse-errors-filename-function nil
84 "Function to call to post-process filenames while parsing error messages.
85 It takes one arg FILENAME which is the name of a file as found
86 in the compilation output, and should return a transformed file name.")
88 ;;;###autoload
89 (defvar compilation-process-setup-function nil
90 "*Function to call to customize the compilation process.
91 This function is called immediately before the compilation process is
92 started. It can be used to set any variables or functions that are used
93 while processing the output of the compilation process.")
95 ;;;###autoload
96 (defvar compilation-buffer-name-function nil
97 "Function to compute the name of a compilation buffer.
98 The function receives one argument, the name of the major mode of the
99 compilation buffer. It should return a string.
100 If nil, compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
102 ;;;###autoload
103 (defvar compilation-finish-function nil
104 "Function to call when a compilation process finishes.
105 It is called with two arguments: the compilation buffer, and a string
106 describing how the process finished.")
108 (make-obsolete-variable 'compilation-finish-function
109 "use `compilation-finish-functions', but it works a little differently."
110 "22.1")
112 ;;;###autoload
113 (defvar compilation-finish-functions nil
114 "Functions to call when a compilation process finishes.
115 Each function is called with two arguments: the compilation buffer,
116 and a string describing how the process finished.")
118 (defvar compilation-in-progress nil
119 "List of compilation processes now running.")
120 (or (assq 'compilation-in-progress minor-mode-alist)
121 (setq minor-mode-alist (cons '(compilation-in-progress " Compiling")
122 minor-mode-alist)))
124 (defvar compilation-error "error"
125 "Stem of message to print when no matches are found.")
127 (defvar compilation-arguments nil
128 "Arguments that were given to `compilation-start'.")
130 (defvar compilation-num-errors-found)
132 ;; If you make any changes to `compilation-error-regexp-alist-alist',
133 ;; be sure to run the ERT test in test/automated/compile-tests.el.
135 (defvar compilation-error-regexp-alist-alist
136 '((absoft
137 "^\\(?:[Ee]rror on \\|[Ww]arning on\\( \\)\\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\
138 of[ \t]+\"?\\([a-zA-Z]?:?[^\":\n]+\\)\"?:" 3 2 nil (1))
140 (ada
141 "\\(warning: .*\\)? at \\([^ \n]+\\):\\([0-9]+\\)$" 2 3 nil (1))
143 (aix
144 " in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
146 (ant
147 "^[ \t]*\\[[^] \n]+\\][ \t]*\\([^: \n]+\\):\\([0-9]+\\):\\(?:\\([0-9]+\\):\\([0-9]+\\):\\([0-9]+\\):\\)?\
148 \\( warning\\)?" 1 (2 . 4) (3 . 5) (6))
150 (bash
151 "^\\([^: \n\t]+\\): line \\([0-9]+\\):" 1 2)
153 (borland
154 "^\\(?:Error\\|Warnin\\(g\\)\\) \\(?:[FEW][0-9]+ \\)?\
155 \\([a-zA-Z]?:?[^:( \t\n]+\\)\
156 \\([0-9]+\\)\\(?:[) \t]\\|:[^0-9\n]\\)" 2 3 nil (1))
158 (python-tracebacks-and-caml
159 "^[ \t]*File \\(\"?\\)\\([^,\" \n\t<>]+\\)\\1, lines? \\([0-9]+\\)-?\\([0-9]+\\)?\\(?:$\\|,\
160 \\(?: characters? \\([0-9]+\\)-?\\([0-9]+\\)?:\\)?\\([ \n]Warning\\(?: [0-9]+\\)?:\\)?\\)"
161 2 (3 . 4) (5 . 6) (7))
163 (comma
164 "^\"\\([^,\" \n\t]+\\)\", line \\([0-9]+\\)\
165 \\(?:[(. pos]+\\([0-9]+\\))?\\)?[:.,; (-]\\( warning:\\|[-0-9 ]*(W)\\)?" 1 2 3 (4))
167 (cucumber
168 "\\(?:^cucumber\\(?: -p [^[:space:]]+\\)?\\|#\\)\
169 \\(?: \\)\\([^\(].*\\):\\([1-9][0-9]*\\)" 1 2)
171 (edg-1
172 "^\\([^ \n]+\\)(\\([0-9]+\\)): \\(?:error\\|warnin\\(g\\)\\|remar\\(k\\)\\)"
173 1 2 nil (3 . 4))
174 (edg-2
175 "at line \\([0-9]+\\) of \"\\([^ \n]+\\)\"$"
176 2 1 nil 0)
178 (epc
179 "^Error [0-9]+ at (\\([0-9]+\\):\\([^)\n]+\\))" 2 1)
181 (ftnchek
182 "\\(^Warning .*\\)? line[ \n]\\([0-9]+\\)[ \n]\\(?:col \\([0-9]+\\)[ \n]\\)?file \\([^ :;\n]+\\)"
183 4 2 3 (1))
185 (iar
186 "^\"\\(.*\\)\",\\([0-9]+\\)\\s-+\\(?:Error\\|Warnin\\(g\\)\\)\\[[0-9]+\\]:"
187 1 2 nil (3))
189 (ibm
190 "^\\([^( \n\t]+\\)(\\([0-9]+\\):\\([0-9]+\\)) :\
191 \\(?:warnin\\(g\\)\\|informationa\\(l\\)\\)?" 1 2 3 (4 . 5))
193 ;; fixme: should be `mips'
194 (irix
195 "^[-[:alnum:]_/ ]+: \\(?:\\(?:[sS]evere\\|[eE]rror\\|[wW]arnin\\(g\\)\\|[iI]nf\\(o\\)\\)[0-9 ]*: \\)?\
196 \\([^,\" \n\t]+\\)\\(?:, line\\|:\\) \\([0-9]+\\):" 3 4 nil (1 . 2))
198 (java
199 "^\\(?:[ \t]+at \\|==[0-9]+== +\\(?:at\\|b\\(y\\)\\)\\).+(\\([^()\n]+\\):\\([0-9]+\\))$" 2 3 nil (1))
201 (jikes-file
202 "^\\(?:Found\\|Issued\\) .* compiling \"\\(.+\\)\":$" 1 nil nil 0)
205 ;; This used to be pathologically slow on long lines (Bug#3441),
206 ;; due to matching filenames via \\(.*?\\). This might be faster.
207 (maven
208 ;; Maven is a popular free software build tool for Java.
209 "\\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\):\\[\\([0-9]+\\),\\([0-9]+\\)\\] " 1 2 3)
211 (jikes-line
212 "^ *\\([0-9]+\\)\\.[ \t]+.*\n +\\(<-*>\n\\*\\*\\* \\(?:Error\\|Warnin\\(g\\)\\)\\)"
213 nil 1 nil 2 0
214 (2 (compilation-face '(3))))
216 (gcc-include
217 "^\\(?:In file included \\| \\|\t\\)from \
218 \\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\):\
219 \\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?\\(?:\\(:\\)\\|\\(,\\|$\\)\\)?"
220 1 2 3 (4 . 5))
222 (ruby-Test::Unit
223 "^[\t ]*\\[\\([^\(].*\\):\\([1-9][0-9]*\\)\\(\\]\\)?:in " 1 2)
225 (gnu
226 ;; The first line matches the program name for
228 ;; PROGRAM:SOURCE-FILE-NAME:LINENO: MESSAGE
230 ;; format, which is used for non-interactive programs other than
231 ;; compilers (e.g. the "jade:" entry in compilation.txt).
233 ;; This first line makes things ambiguous with output such as
234 ;; "foo:344:50:blabla" since the "foo" part can match this first
235 ;; line (in which case the file name as "344"). To avoid this,
236 ;; the second line disallows filenames exclusively composed of
237 ;; digits.
239 ;; Similarly, we get lots of false positives with messages including
240 ;; times of the form "HH:MM:SS" where MM is taken as a line number, so
241 ;; the last line tries to rule out message where the info after the
242 ;; line number starts with "SS". --Stef
244 ;; The core of the regexp is the one with *?. It says that a file name
245 ;; can be composed of any non-newline char, but it also rules out some
246 ;; valid but unlikely cases, such as a trailing space or a space
247 ;; followed by a -, or a colon followed by a space.
249 ;; The "in \\|from " exception was added to handle messages from Ruby.
250 "^\\(?:[[:alpha:]][-[:alnum:].]+: ?\\|[ \t]+\\(?:in \\|from \\)\\)?\
251 \\([0-9]*[^0-9\n]\\(?:[^\n :]\\| [^-/\n]\\|:[^ \n]\\)*?\\): ?\
252 \\([0-9]+\\)\\(?:[.:]\\([0-9]+\\)\\)?\
253 \\(?:-\\([0-9]+\\)?\\(?:\\.\\([0-9]+\\)\\)?\\)?:\
254 \\(?: *\\(\\(?:Future\\|Runtime\\)?[Ww]arning\\|W:\\)\\|\
255 *\\([Ii]nfo\\(?:\\>\\|rmationa?l?\\)\\|I:\\|instantiated from\\|[Nn]ote\\)\\|\
256 *[Ee]rror\\|\[0-9]?\\(?:[^0-9\n]\\|$\\)\\|[0-9][0-9][0-9]\\)"
257 1 (2 . 4) (3 . 5) (6 . 7))
259 (lcc
260 "^\\(?:E\\|\\(W\\)\\), \\([^(\n]+\\)(\\([0-9]+\\),[ \t]*\\([0-9]+\\)"
261 2 3 4 (1))
263 (makepp
264 "^makepp\\(?:\\(?:: warning\\(:\\).*?\\|\\(: Scanning\\|: [LR]e?l?oading makefile\\|: Imported\\|log:.*?\\) \\|: .*?\\)\
265 `\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]\\)"
266 4 5 nil (1 . 2) 3
267 (0 (progn (save-match-data
268 (compilation-parse-errors
269 (match-end 0) (line-end-position)
270 `("`\\(\\(\\S +?\\)\\(?::\\([0-9]+\\)\\)?\\)['(]"
271 2 3 nil
272 ,(cond ((match-end 1) 1) ((match-end 2) 0) (t 2))
273 1)))
274 (end-of-line)
275 nil)))
277 ;; Should be lint-1, lint-2 (SysV lint)
278 (mips-1
279 " (\\([0-9]+\\)) in \\([^ \n]+\\)" 2 1)
280 (mips-2
281 " in \\([^()\n ]+\\)(\\([0-9]+\\))$" 1 2)
283 (msft
284 ;; The message may be a "warning", "error", or "fatal error" with
285 ;; an error code, or "see declaration of" without an error code.
286 "^ *\\([0-9]+>\\)?\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)) \
287 : \\(?:see declaration\\|\\(?:warnin\\(g\\)\\|[a-z ]+\\) C[0-9]+:\\)"
288 2 3 nil (4))
290 (omake
291 ;; "omake -P" reports "file foo changed"
292 ;; (useful if you do "cvs up" and want to see what has changed)
293 "omake: file \\(.*\\) changed" 1 nil nil nil nil
294 ;; FIXME-omake: This tries to prevent reusing pre-existing markers
295 ;; for subsequent messages, since those messages's line numbers
296 ;; are about another version of the file.
297 (0 (progn (compilation--flush-file-structure (match-string 1))
298 nil)))
300 (oracle
301 "^\\(?:Semantic error\\|Error\\|PCC-[0-9]+:\\).* line \\([0-9]+\\)\
302 \\(?:\\(?:,\\| at\\)? column \\([0-9]+\\)\\)?\
303 \\(?:,\\| in\\| of\\)? file \\(.*?\\):?$"
304 3 1 2)
306 ;; "during global destruction": This comes out under "use
307 ;; warnings" in recent perl when breaking circular references
308 ;; during program or thread exit.
309 (perl
310 " at \\([^ \n]+\\) line \\([0-9]+\\)\\(?:[,.]\\|$\\| \
311 during global destruction\\.$\\)" 1 2)
313 (php
314 "\\(?:Parse\\|Fatal\\) error: \\(.*\\) in \\(.*\\) on line \\([0-9]+\\)"
315 2 3 nil nil)
317 (rxp
318 "^\\(?:Error\\|Warnin\\(g\\)\\):.*\n.* line \\([0-9]+\\) char\
319 \\([0-9]+\\) of file://\\(.+\\)"
320 4 2 3 (1))
322 (sparc-pascal-file
323 "^\\w\\w\\w \\w\\w\\w +[0-3]?[0-9] +[0-2][0-9]:[0-5][0-9]:[0-5][0-9]\
324 [12][09][0-9][0-9] +\\(.*\\):$"
325 1 nil nil 0)
326 (sparc-pascal-line
327 "^\\(\\(?:E\\|\\(w\\)\\) +[0-9]+\\) line \\([0-9]+\\) - "
328 nil 3 nil (2) nil (1 (compilation-face '(2))))
329 (sparc-pascal-example
330 "^ +\\([0-9]+\\) +.*\n\\(\\(?:e\\|\\(w\\)\\) [0-9]+\\)-+"
331 nil 1 nil (3) nil (2 (compilation-face '(3))))
333 (sun
334 ": \\(?:ERROR\\|WARNIN\\(G\\)\\|REMAR\\(K\\)\\) \\(?:[[:alnum:] ]+, \\)?\
335 File = \\(.+\\), Line = \\([0-9]+\\)\\(?:, Column = \\([0-9]+\\)\\)?"
336 3 4 5 (1 . 2))
338 (sun-ada
339 "^\\([^, \n\t]+\\), line \\([0-9]+\\), char \\([0-9]+\\)[:., \(-]" 1 2 3)
341 (watcom
342 "^[ \t]*\\(\\(?:[a-zA-Z]:\\)?[^:(\t\n]+\\)(\\([0-9]+\\)): ?\
343 \\(?:\\(Error! E[0-9]+\\)\\|\\(Warning! W[0-9]+\\)\\):"
344 1 2 nil (4))
346 (4bsd
347 "\\(?:^\\|:: \\|\\S ( \\)\\(/[^ \n\t()]+\\)(\\([0-9]+\\))\
348 \\(?:: \\(warning:\\)?\\|$\\| ),\\)" 1 2 nil (3))
350 (gcov-file
351 "^ *-: *\\(0\\):Source:\\(.+\\)$"
352 2 1 nil 0 nil)
353 (gcov-header
354 "^ *-: *\\(0\\):\\(?:Object\\|Graph\\|Data\\|Runs\\|Programs\\):.+$"
355 nil 1 nil 0 nil)
356 ;; Underlines over all lines of gcov output are too uncomfortable to read.
357 ;; However, hyperlinks embedded in the lines are useful.
358 ;; So I put default face on the lines; and then put
359 ;; compilation-*-face by manually to eliminate the underlines.
360 ;; The hyperlinks are still effective.
361 (gcov-nomark
362 "^ *-: *\\([1-9]\\|[0-9]\\{2,\\}\\):.*$"
363 nil 1 nil 0 nil
364 (0 'default)
365 (1 compilation-line-face))
366 (gcov-called-line
367 "^ *\\([0-9]+\\): *\\([0-9]+\\):.*$"
368 nil 2 nil 0 nil
369 (0 'default)
370 (1 compilation-info-face) (2 compilation-line-face))
371 (gcov-never-called
372 "^ *\\(#####\\): *\\([0-9]+\\):.*$"
373 nil 2 nil 2 nil
374 (0 'default)
375 (1 compilation-error-face) (2 compilation-line-face))
377 (perl--Pod::Checker
378 ;; podchecker error messages, per Pod::Checker.
379 ;; The style is from the Pod::Checker::poderror() function, eg.
380 ;; *** ERROR: Spurious text after =cut at line 193 in file foo.pm
382 ;; Plus end_pod() can give "at line EOF" instead of a
383 ;; number, so for that match "on line N" which is the
384 ;; originating spot, eg.
385 ;; *** ERROR: =over on line 37 without closing =back at line EOF in file bar.pm
387 ;; Plus command() can give both "on line N" and "at line N";
388 ;; the latter is desired and is matched because the .* is
389 ;; greedy.
390 ;; *** ERROR: =over on line 1 without closing =back (at head1) at line 3 in file x.pod
392 "^\\*\\*\\* \\(?:ERROR\\|\\(WARNING\\)\\).* \\(?:at\\|on\\) line \
393 \\([0-9]+\\) \\(?:.* \\)?in file \\([^ \t\n]+\\)"
394 3 2 nil (1))
395 (perl--Test
396 ;; perl Test module error messages.
397 ;; Style per the ok() function "$context", eg.
398 ;; # Failed test 1 in foo.t at line 6
400 "^# Failed test [0-9]+ in \\([^ \t\r\n]+\\) at line \\([0-9]+\\)"
401 1 2)
402 (perl--Test2
403 ;; Or when comparing got/want values, with a "fail #n" if repeated
404 ;; # Test 2 got: "xx" (t-compilation-perl-2.t at line 10)
405 ;; # Test 3 got: "xx" (t-compilation-perl-2.t at line 10 fail #2)
407 ;; And under Test::Harness they're preceded by progress stuff with
408 ;; \r and "NOK",
409 ;; ... NOK 1# Test 1 got: "1234" (t/foo.t at line 46)
411 "^\\(.*NOK.*\\)?# Test [0-9]+ got:.* (\\([^ \t\r\n]+\\) at line \
412 \\([0-9]+\\)\\( fail #[0-9]+\\)?)"
413 2 3)
414 (perl--Test::Harness
415 ;; perl Test::Harness output, eg.
416 ;; NOK 1# Test 1 got: "1234" (t/foo.t at line 46)
418 ;; Test::Harness is slightly designed for tty output, since
419 ;; it prints CRs to overwrite progress messages, but if you
420 ;; run it in with M-x compile this pattern can at least step
421 ;; through the failures.
423 "^.*NOK.* \\([^ \t\r\n]+\\) at line \\([0-9]+\\)"
424 1 2)
425 (weblint
426 ;; The style comes from HTML::Lint::Error::as_string(), eg.
427 ;; index.html (13:1) Unknown element <fdjsk>
429 ;; The pattern only matches filenames without spaces, since that
430 ;; should be usual and should help reduce the chance of a false
431 ;; match of a message from some unrelated program.
433 ;; This message style is quite close to the "ibm" entry which is
434 ;; for IBM C, though that ibm bit doesn't put a space after the
435 ;; filename.
437 "^\\([^ \t\r\n(]+\\) (\\([0-9]+\\):\\([0-9]+\\)) "
438 1 2 3)
440 "Alist of values for `compilation-error-regexp-alist'.")
442 (defcustom compilation-error-regexp-alist
443 (mapcar 'car compilation-error-regexp-alist-alist)
444 "Alist that specifies how to match errors in compiler output.
445 On GNU and Unix, any string is a valid filename, so these
446 matchers must make some common sense assumptions, which catch
447 normal cases. A shorter list will be lighter on resource usage.
449 Instead of an alist element, you can use a symbol, which is
450 looked up in `compilation-error-regexp-alist-alist'. You can see
451 the predefined symbols and their effects in the file
452 `etc/compilation.txt' (linked below if you are customizing this).
454 Each elt has the form (REGEXP FILE [LINE COLUMN TYPE HYPERLINK
455 HIGHLIGHT...]). If REGEXP matches, the FILE'th subexpression
456 gives the file name, and the LINE'th subexpression gives the line
457 number. The COLUMN'th subexpression gives the column number on
458 that line.
460 If FILE, LINE or COLUMN are nil or that index didn't match, that
461 information is not present on the matched line. In that case the
462 file name is assumed to be the same as the previous one in the
463 buffer, line number defaults to 1 and column defaults to
464 beginning of line's indentation.
466 FILE can also have the form (FILE FORMAT...), where the FORMATs
467 \(e.g. \"%s.c\") will be applied in turn to the recognized file
468 name, until a file of that name is found. Or FILE can also be a
469 function that returns (FILENAME) or (RELATIVE-FILENAME . DIRNAME).
470 In the former case, FILENAME may be relative or absolute.
472 LINE can also be of the form (LINE . END-LINE) meaning a range
473 of lines. COLUMN can also be of the form (COLUMN . END-COLUMN)
474 meaning a range of columns starting on LINE and ending on
475 END-LINE, if that matched.
477 TYPE is 2 or nil for a real error or 1 for warning or 0 for info.
478 TYPE can also be of the form (WARNING . INFO). In that case this
479 will be equivalent to 1 if the WARNING'th subexpression matched
480 or else equivalent to 0 if the INFO'th subexpression matched.
481 See `compilation-error-face', `compilation-warning-face',
482 `compilation-info-face' and `compilation-skip-threshold'.
484 What matched the HYPERLINK'th subexpression has `mouse-face' and
485 `compilation-message-face' applied. If this is nil, the text
486 matched by the whole REGEXP becomes the hyperlink.
488 Additional HIGHLIGHTs take the shape (SUBMATCH FACE), where SUBMATCH is
489 the number of a submatch that should be highlighted when it matches,
490 and FACE is an expression returning the face to use for that submatch.."
491 :type '(repeat (choice (symbol :tag "Predefined symbol")
492 (sexp :tag "Error specification")))
493 :link `(file-link :tag "example file"
494 ,(expand-file-name "compilation.txt" data-directory))
495 :group 'compilation)
497 ;;;###autoload(put 'compilation-directory 'safe-local-variable 'stringp)
498 (defvar compilation-directory nil
499 "Directory to restore to when doing `recompile'.")
501 (defvar compilation-directory-matcher
502 '("\\(?:Entering\\|Leavin\\(g\\)\\) directory `\\(.+\\)'$" (2 . 1))
503 "A list for tracking when directories are entered or left.
504 If nil, do not track directories, e.g. if all file names are absolute. The
505 first element is the REGEXP matching these messages. It can match any number
506 of variants, e.g. different languages. The remaining elements are all of the
507 form (DIR . LEAVE). If for any one of these the DIR'th subexpression
508 matches, that is a directory name. If LEAVE is nil or the corresponding
509 LEAVE'th subexpression doesn't match, this message is about going into another
510 directory. If it does match anything, this message is about going back to the
511 directory we were in before the last entering message. If you change this,
512 you may also want to change `compilation-page-delimiter'.")
514 (defvar compilation-page-delimiter
515 "^\\(?:\f\\|.*\\(?:Entering\\|Leaving\\) directory `.+'\n\\)+"
516 "Value of `page-delimiter' in Compilation mode.")
518 (defvar compilation-mode-font-lock-keywords
519 '(;; configure output lines.
520 ("^[Cc]hecking \\(?:[Ff]or \\|[Ii]f \\|[Ww]hether \\(?:to \\)?\\)?\\(.+\\)\\.\\.\\. *\\(?:(cached) *\\)?\\(\\(yes\\(?: .+\\)?\\)\\|no\\|\\(.*\\)\\)$"
521 (1 font-lock-variable-name-face)
522 (2 (compilation-face '(4 . 3))))
523 ;; Command output lines. Recognize `make[n]:' lines too.
524 ("^\\([[:alnum:]_/.+-]+\\)\\(\\[\\([0-9]+\\)\\]\\)?[ \t]*:"
525 (1 font-lock-function-name-face) (3 compilation-line-face nil t))
526 (" --?o\\(?:utfile\\|utput\\)?[= ]\\(\\S +\\)" . 1)
527 ("^Compilation \\(finished\\).*"
528 (0 '(face nil compilation-message nil help-echo nil mouse-face nil) t)
529 (1 compilation-info-face))
530 ("^Compilation \\(exited abnormally\\|interrupt\\|killed\\|terminated\\|segmentation fault\\)\\(?:.*with code \\([0-9]+\\)\\)?.*"
531 (0 '(face nil compilation-message nil help-echo nil mouse-face nil) t)
532 (1 compilation-error-face)
533 (2 compilation-error-face nil t)))
534 "Additional things to highlight in Compilation mode.
535 This gets tacked on the end of the generated expressions.")
537 (defvar compilation-highlight-regexp t
538 "Regexp matching part of visited source lines to highlight temporarily.
539 Highlight entire line if t; don't highlight source lines if nil.")
541 (defvar compilation-highlight-overlay nil
542 "Overlay used to temporarily highlight compilation matches.")
544 (defcustom compilation-error-screen-columns t
545 "If non-nil, column numbers in error messages are screen columns.
546 Otherwise they are interpreted as character positions, with
547 each character occupying one column.
548 The default is to use screen columns, which requires that the compilation
549 program and Emacs agree about the display width of the characters,
550 especially the TAB character."
551 :type 'boolean
552 :group 'compilation
553 :version "20.4")
555 (defcustom compilation-read-command t
556 "Non-nil means \\[compile] reads the compilation command to use.
557 Otherwise, \\[compile] just uses the value of `compile-command'.
559 Note that changing this to nil may be a security risk, because a
560 file might define a malicious `compile-command' as a file local
561 variable, and you might not notice. Therefore, `compile-command'
562 is considered unsafe if this variable is nil."
563 :type 'boolean
564 :group 'compilation)
566 ;;;###autoload
567 (defcustom compilation-ask-about-save t
568 "Non-nil means \\[compile] asks which buffers to save before compiling.
569 Otherwise, it saves all modified buffers without asking."
570 :type 'boolean
571 :group 'compilation)
573 (defcustom compilation-save-buffers-predicate nil
574 "The second argument (PRED) passed to `save-some-buffers' before compiling.
575 E.g., one can set this to
576 (lambda ()
577 (string-prefix-p my-compilation-root (file-truename (buffer-file-name))))
578 to limit saving to files located under `my-compilation-root'.
579 Note, that, in general, `compilation-directory' cannot be used instead
580 of `my-compilation-root' here."
581 :type '(choice
582 (const :tag "Default (save all file-visiting buffers)" nil)
583 (const :tag "Save all buffers" t)
584 function)
585 :group 'compilation
586 :version "24.1")
588 ;;;###autoload
589 (defcustom compilation-search-path '(nil)
590 "List of directories to search for source files named in error messages.
591 Elements should be directory names, not file names of directories.
592 The value nil as an element means to try the default directory."
593 :type '(repeat (choice (const :tag "Default" nil)
594 (string :tag "Directory")))
595 :group 'compilation)
597 ;;;###autoload
598 (defcustom compile-command (purecopy "make -k ")
599 "Last shell command used to do a compilation; default for next compilation.
601 Sometimes it is useful for files to supply local values for this variable.
602 You might also use mode hooks to specify it in certain modes, like this:
604 (add-hook 'c-mode-hook
605 (lambda ()
606 (unless (or (file-exists-p \"makefile\")
607 (file-exists-p \"Makefile\"))
608 (set (make-local-variable 'compile-command)
609 (concat \"make -k \"
610 (file-name-sans-extension buffer-file-name))))))"
611 :type 'string
612 :group 'compilation)
613 ;;;###autoload(put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (or (not (boundp 'compilation-read-command)) compilation-read-command))))
615 ;;;###autoload
616 (defcustom compilation-disable-input nil
617 "If non-nil, send end-of-file as compilation process input.
618 This only affects platforms that support asynchronous processes (see
619 `start-process'); synchronous compilation processes never accept input."
620 :type 'boolean
621 :group 'compilation
622 :version "22.1")
624 ;; A weak per-compilation-buffer hash indexed by (FILENAME . DIRECTORY). Each
625 ;; value is a FILE-STRUCTURE as described above, with the car eq to the hash
626 ;; key. This holds the tree seen from root, for storing new nodes.
627 (defvar compilation-locs ())
629 (defvar compilation-debug nil
630 "*Set this to t before creating a *compilation* buffer.
631 Then every error line will have a debug text property with the matcher that
632 fit this line and the match data. Use `describe-text-properties'.")
634 (defvar compilation-exit-message-function nil "\
635 If non-nil, called when a compilation process dies to return a status message.
636 This should be a function of three arguments: process status, exit status,
637 and exit message; it returns a cons (MESSAGE . MODELINE) of the strings to
638 write into the compilation buffer, and to put in its mode line.")
640 (defcustom compilation-environment nil
641 "List of environment variables for compilation to inherit.
642 Each element should be a string of the form ENVVARNAME=VALUE.
643 This list is temporarily prepended to `process-environment' prior to
644 starting the compilation process."
645 :type '(repeat (string :tag "ENVVARNAME=VALUE"))
646 :options '(("LANG=C"))
647 :group 'compilation
648 :version "24.1")
650 ;; History of compile commands.
651 (defvar compile-history nil)
653 (defface compilation-error
654 '((t :inherit error))
655 "Face used to highlight compiler errors."
656 :group 'compilation
657 :version "22.1")
659 (defface compilation-warning
660 '((t :inherit warning))
661 "Face used to highlight compiler warnings."
662 :group 'compilation
663 :version "22.1")
665 (defface compilation-info
666 '((t :inherit success))
667 "Face used to highlight compiler information."
668 :group 'compilation
669 :version "22.1")
671 (defface compilation-line-number
672 '((t :inherit font-lock-keyword-face))
673 "Face for displaying line numbers in compiler messages."
674 :group 'compilation
675 :version "22.1")
677 (defface compilation-column-number
678 '((t :inherit font-lock-doc-face))
679 "Face for displaying column numbers in compiler messages."
680 :group 'compilation
681 :version "22.1")
683 (defcustom compilation-message-face 'underline
684 "Face name to use for whole messages.
685 Faces `compilation-error-face', `compilation-warning-face',
686 `compilation-info-face', `compilation-line-face' and
687 `compilation-column-face' get prepended to this, when applicable."
688 :type 'face
689 :group 'compilation
690 :version "22.1")
692 (defvar compilation-error-face 'compilation-error
693 "Face name to use for file name in error messages.")
695 (defvar compilation-warning-face 'compilation-warning
696 "Face name to use for file name in warning messages.")
698 (defvar compilation-info-face 'compilation-info
699 "Face name to use for file name in informational messages.")
701 (defvar compilation-line-face 'compilation-line-number
702 "Face name to use for line numbers in compiler messages.")
704 (defvar compilation-column-face 'compilation-column-number
705 "Face name to use for column numbers in compiler messages.")
707 ;; same faces as dired uses
708 (defvar compilation-enter-directory-face 'font-lock-function-name-face
709 "Face name to use for entering directory messages.")
711 (defvar compilation-leave-directory-face 'font-lock-builtin-face
712 "Face name to use for leaving directory messages.")
716 ;; Used for compatibility with the old compile.el.
717 (defvar compilation-parse-errors-function nil)
718 (make-obsolete 'compilation-parse-errors-function
719 'compilation-error-regexp-alist "24.1")
721 (defcustom compilation-auto-jump-to-first-error nil
722 "If non-nil, automatically jump to the first error during compilation."
723 :type 'boolean
724 :group 'compilation
725 :version "23.1")
727 (defvar compilation-auto-jump-to-next nil
728 "If non-nil, automatically jump to the next error encountered.")
729 (make-variable-buffer-local 'compilation-auto-jump-to-next)
731 ;; (defvar compilation-buffer-modtime nil
732 ;; "The buffer modification time, for buffers not associated with files.")
733 ;; (make-variable-buffer-local 'compilation-buffer-modtime)
735 (defvar compilation-skip-to-next-location t
736 "*If non-nil, skip multiple error messages for the same source location.")
738 (defcustom compilation-skip-threshold 1
739 "Compilation motion commands skip less important messages.
740 The value can be either 2 -- skip anything less than error, 1 --
741 skip anything less than warning or 0 -- don't skip any messages.
742 Note that all messages not positively identified as warning or
743 info, are considered errors."
744 :type '(choice (const :tag "Skip warnings and info" 2)
745 (const :tag "Skip info" 1)
746 (const :tag "No skip" 0))
747 :group 'compilation
748 :version "22.1")
750 (defun compilation-set-skip-threshold (level)
751 "Switch the `compilation-skip-threshold' level."
752 (interactive
753 (list
754 (mod (if current-prefix-arg
755 (prefix-numeric-value current-prefix-arg)
756 (1+ compilation-skip-threshold))
757 3)))
758 (setq compilation-skip-threshold level)
759 (message "Skipping %s"
760 (case compilation-skip-threshold
761 (0 "Nothing")
762 (1 "Info messages")
763 (2 "Warnings and info"))))
765 (defcustom compilation-skip-visited nil
766 "Compilation motion commands skip visited messages if this is t.
767 Visited messages are ones for which the file, line and column have been jumped
768 to from the current content in the current compilation buffer, even if it was
769 from a different message."
770 :type 'boolean
771 :group 'compilation
772 :version "22.1")
774 (defun compilation-face (type)
775 (or (and (car type) (match-end (car type)) compilation-warning-face)
776 (and (cdr type) (match-end (cdr type)) compilation-info-face)
777 compilation-error-face))
779 ;; LOC (or location) is a list of (COLUMN LINE FILE-STRUCTURE nil nil)
781 ;; COLUMN and LINE are numbers parsed from an error message. COLUMN and maybe
782 ;; LINE will be nil for a message that doesn't contain them. Then the
783 ;; location refers to a indented beginning of line or beginning of file.
784 ;; Once any location in some file has been jumped to, the list is extended to
785 ;; (COLUMN LINE FILE-STRUCTURE MARKER TIMESTAMP . VISITED)
786 ;; for all LOCs pertaining to that file.
787 ;; MARKER initially points to LINE and COLUMN in a buffer visiting that file.
788 ;; Being a marker it sticks to some text, when the buffer grows or shrinks
789 ;; before that point. VISITED is t if we have jumped there, else nil.
790 ;; FIXME-omake: TIMESTAMP was used to try and handle "incremental compilation":
791 ;; `omake -P' polls filesystem for changes and recompiles when a file is
792 ;; modified using the same *compilation* buffer. this necessitates
793 ;; re-parsing markers.
795 ;; (defstruct (compilation--loc
796 ;; (:constructor nil)
797 ;; (:copier nil)
798 ;; (:constructor compilation--make-loc
799 ;; (file-struct line col marker))
800 ;; (:conc-name compilation--loc->))
801 ;; col line file-struct marker timestamp visited)
803 ;; FIXME: We don't use a defstruct because of compilation-assq which looks up
804 ;; and creates part of the LOC (only the first cons cell containing the COL).
806 (defmacro compilation--make-cdrloc (line file-struct marker)
807 `(list ,line ,file-struct ,marker nil))
808 (defmacro compilation--loc->col (loc) `(car ,loc))
809 (defmacro compilation--loc->line (loc) `(cadr ,loc))
810 (defmacro compilation--loc->file-struct (loc) `(nth 2 ,loc))
811 (defmacro compilation--loc->marker (loc) `(nth 3 ,loc))
812 ;; (defmacro compilation--loc->timestamp (loc) `(nth 4 ,loc))
813 (defmacro compilation--loc->visited (loc) `(nthcdr 5 ,loc))
815 ;; FILE-STRUCTURE is a list of
816 ;; ((FILENAME DIRECTORY) FORMATS (LINE LOC ...) ...)
818 ;; FILENAME is a string parsed from an error message. DIRECTORY is a string
819 ;; obtained by following directory change messages. DIRECTORY will be nil for
820 ;; an absolute filename. FORMATS is a list of formats to apply to FILENAME if
821 ;; a file of that name can't be found.
822 ;; The rest of the list is an alist of elements with LINE as key. The keys
823 ;; are either nil or line numbers. If present, nil comes first, followed by
824 ;; the numbers in decreasing order. The LOCs for each line are again an alist
825 ;; ordered the same way. Note that the whole file structure is referenced in
826 ;; every LOC.
828 (defmacro compilation--make-file-struct (file-spec formats &optional loc-tree)
829 `(cons ,file-spec (cons ,formats ,loc-tree)))
830 (defmacro compilation--file-struct->file-spec (fs) `(car ,fs))
831 (defmacro compilation--file-struct->formats (fs) `(cadr ,fs))
832 ;; The FORMATS field plays the role of ANCHOR in the loc-tree.
833 (defmacro compilation--file-struct->loc-tree (fs) `(cdr ,fs))
835 ;; MESSAGE is a list of (LOC TYPE END-LOC)
837 ;; TYPE is 0 for info or 1 for warning if the message matcher identified it as
838 ;; such, 2 otherwise (for a real error). END-LOC is a LOC pointing to the
839 ;; other end, if the parsed message contained a range. If the end of the
840 ;; range didn't specify a COLUMN, it defaults to -1, meaning end of line.
841 ;; These are the value of the `compilation-message' text-properties in the
842 ;; compilation buffer.
844 (defstruct (compilation--message
845 (:constructor nil)
846 (:copier nil)
847 ;; (:type list) ;Old representation.
848 (:constructor compilation--make-message (loc type end-loc))
849 (:conc-name compilation--message->))
850 loc type end-loc)
852 (defvar compilation--previous-directory-cache nil
853 "A pair (POS . RES) caching the result of previous directory search.
854 Basically, this pair says that calling
855 (previous-single-property-change POS 'compilation-directory)
856 returned RES, i.e. there is no change of `compilation-directory' between
857 POS and RES.")
858 (make-variable-buffer-local 'compilation--previous-directory-cache)
860 (defun compilation--flush-directory-cache (start _end)
861 (cond
862 ((or (not compilation--previous-directory-cache)
863 (<= (car compilation--previous-directory-cache) start)))
864 ((or (not (cdr compilation--previous-directory-cache))
865 (null (marker-buffer (cdr compilation--previous-directory-cache)))
866 (<= (cdr compilation--previous-directory-cache) start))
867 (set-marker (car compilation--previous-directory-cache) start))
868 (t (setq compilation--previous-directory-cache nil))))
870 (defun compilation--previous-directory (pos)
871 "Like (previous-single-property-change POS 'compilation-directory), but faster."
872 ;; This avoids an N² behavior when there's no/few compilation-directory
873 ;; entries, in which case each call to previous-single-property-change
874 ;; ends up having to walk very far back to find the last change.
875 (if (and compilation--previous-directory-cache
876 (< pos (car compilation--previous-directory-cache))
877 (or (null (cdr compilation--previous-directory-cache))
878 (< (cdr compilation--previous-directory-cache) pos)))
879 ;; No need to call previous-single-property-change.
880 (cdr compilation--previous-directory-cache)
882 (let* ((cache (and compilation--previous-directory-cache
883 (<= (car compilation--previous-directory-cache) pos)
884 (car compilation--previous-directory-cache)))
885 (prev
886 (previous-single-property-change
887 pos 'compilation-directory nil cache))
888 (res
889 (cond
890 ((null cache)
891 (setq compilation--previous-directory-cache
892 (cons (copy-marker pos) (if prev (copy-marker prev))))
893 prev)
894 ((and prev (= prev cache))
895 (if cache
896 (set-marker (car compilation--previous-directory-cache) pos)
897 (setq compilation--previous-directory-cache
898 (cons (copy-marker pos) nil)))
899 (cdr compilation--previous-directory-cache))
901 (if cache
902 (progn
903 (set-marker cache pos)
904 (setcdr compilation--previous-directory-cache
905 (copy-marker prev)))
906 (setq compilation--previous-directory-cache
907 (cons (copy-marker pos) (if prev (copy-marker prev)))))
908 prev))))
909 (if (markerp res) (marker-position res) res))))
911 ;; Internal function for calculating the text properties of a directory
912 ;; change message. The compilation-directory property is important, because it
913 ;; is the stack of nested enter-messages. Relative filenames on the following
914 ;; lines are relative to the top of the stack.
915 (defun compilation-directory-properties (idx leave)
916 (if leave (setq leave (match-end leave)))
917 ;; find previous stack, and push onto it, or if `leave' pop it
918 (let ((dir (compilation--previous-directory (match-beginning 0))))
919 (setq dir (if dir (or (get-text-property (1- dir) 'compilation-directory)
920 (get-text-property dir 'compilation-directory))))
921 `(font-lock-face ,(if leave
922 compilation-leave-directory-face
923 compilation-enter-directory-face)
924 compilation-directory ,(if leave
925 (or (cdr dir)
926 '(nil)) ; nil only isn't a property-change
927 (cons (match-string-no-properties idx) dir))
928 ;; Place a `compilation-message' everywhere we change text-properties
929 ;; so compilation--remove-properties can know what to remove.
930 compilation-message ,(compilation--make-message nil 0 nil)
931 mouse-face highlight
932 keymap compilation-button-map
933 help-echo "mouse-2: visit destination directory")))
935 ;; Data type `reverse-ordered-alist' retriever. This function retrieves the
936 ;; KEY element from the ALIST, creating it in the right position if not already
937 ;; present. ALIST structure is
938 ;; '(ANCHOR (KEY1 ...) (KEY2 ...)... (KEYn ALIST ...))
939 ;; ANCHOR is ignored, but necessary so that elements can be inserted. KEY1
940 ;; may be nil. The other KEYs are ordered backwards so that growing line
941 ;; numbers can be inserted in front and searching can abort after half the
942 ;; list on average.
943 (eval-when-compile ;Don't keep it at runtime if not needed.
944 (defmacro compilation-assq (key alist)
945 `(let* ((l1 ,alist)
946 (l2 (cdr l1)))
947 (car (if (if (null ,key)
948 (if l2 (null (caar l2)))
949 (while (if l2 (if (caar l2) (< ,key (caar l2)) t))
950 (setq l1 l2
951 l2 (cdr l1)))
952 (if l2 (eq ,key (caar l2))))
954 (setcdr l1 (cons (list ,key) l2)))))))
956 (defun compilation-auto-jump (buffer pos)
957 (with-current-buffer buffer
958 (goto-char pos)
959 (let ((win (get-buffer-window buffer 0)))
960 (if win (set-window-point win pos)))
961 (if compilation-auto-jump-to-first-error
962 (compile-goto-error))))
964 ;; This function is the central driver, called when font-locking to gather
965 ;; all information needed to later jump to corresponding source code.
966 ;; Return a property list with all meta information on this error location.
968 (defun compilation-error-properties (file line end-line col end-col type fmt)
969 (unless (text-property-not-all (match-beginning 0) (point)
970 'compilation-message nil)
971 (if file
972 (when (stringp
973 (setq file (if (functionp file) (funcall file)
974 (match-string-no-properties file))))
975 (let ((dir
976 (unless (file-name-absolute-p file)
977 (let ((pos (compilation--previous-directory
978 (match-beginning 0))))
979 (when pos
980 (or (get-text-property (1- pos) 'compilation-directory)
981 (get-text-property pos 'compilation-directory)))))))
982 (setq file (cons file (car dir)))))
983 ;; This message didn't mention one, get it from previous
984 (let ((prev-pos
985 ;; Find the previous message.
986 (previous-single-property-change (point) 'compilation-message)))
987 (if prev-pos
988 ;; Get the file structure that belongs to it.
989 (let* ((prev
990 (or (get-text-property (1- prev-pos) 'compilation-message)
991 (get-text-property prev-pos 'compilation-message)))
992 (prev-file-struct
993 (and prev
994 (compilation--loc->file-struct
995 (compilation--message->loc prev)))))
997 ;; Construct FILE . DIR from that.
998 (if prev-file-struct
999 (setq file (cons (caar prev-file-struct)
1000 (cadr (car prev-file-struct)))))))
1001 (unless file
1002 (setq file '("*unknown*")))))
1003 ;; All of these fields are optional, get them only if we have an index, and
1004 ;; it matched some part of the message.
1005 (and line
1006 (setq line (match-string-no-properties line))
1007 (setq line (string-to-number line)))
1008 (and end-line
1009 (setq end-line (match-string-no-properties end-line))
1010 (setq end-line (string-to-number end-line)))
1011 (if col
1012 (if (functionp col)
1013 (setq col (funcall col))
1014 (and
1015 (setq col (match-string-no-properties col))
1016 (setq col (string-to-number col)))))
1017 (if (and end-col (functionp end-col))
1018 (setq end-col (funcall end-col))
1019 (if (and end-col (setq end-col (match-string-no-properties end-col)))
1020 (setq end-col (- (string-to-number end-col) -1))
1021 (if end-line (setq end-col -1))))
1022 (if (consp type) ; not a static type, check what it is.
1023 (setq type (or (and (car type) (match-end (car type)) 1)
1024 (and (cdr type) (match-end (cdr type)) 0)
1025 2)))
1027 (when (and compilation-auto-jump-to-next
1028 (>= type compilation-skip-threshold))
1029 (kill-local-variable 'compilation-auto-jump-to-next)
1030 (run-with-timer 0 nil 'compilation-auto-jump
1031 (current-buffer) (match-beginning 0)))
1033 (compilation-internal-error-properties
1034 file line end-line col end-col type fmt)))
1036 (defun compilation-move-to-column (col screen)
1037 "Go to column COL on the current line.
1038 If SCREEN is non-nil, columns are screen columns, otherwise, they are
1039 just char-counts."
1040 (setq col (- col compilation-first-column))
1041 (if screen
1042 (move-to-column (max col 0))
1043 (goto-char (min (+ (line-beginning-position) col) (line-end-position)))))
1045 (defun compilation-internal-error-properties (file line end-line col end-col type fmts)
1046 "Get the meta-info that will be added as text-properties.
1047 LINE, END-LINE, COL, END-COL are integers or nil.
1048 TYPE can be 0, 1, or 2, meaning error, warning, or just info.
1049 FILE should be (FILENAME) or (RELATIVE-FILENAME . DIRNAME) or nil.
1050 FMTS is a list of format specs for transforming the file name.
1051 (See `compilation-error-regexp-alist'.)"
1052 (unless file (setq file '("*unknown*")))
1053 (let* ((file-struct (compilation-get-file-structure file fmts))
1054 ;; Get first already existing marker (if any has one, all have one).
1055 ;; Do this first, as the compilation-assq`s may create new nodes.
1056 (marker-line ; a line structure
1057 (cadr (compilation--file-struct->loc-tree file-struct)))
1058 (marker
1059 (if marker-line (compilation--loc->marker (cadr marker-line))))
1060 (screen-columns compilation-error-screen-columns)
1061 (first-column compilation-first-column)
1062 end-marker loc end-loc)
1063 (if (not (and marker (marker-buffer marker)))
1064 (setq marker nil) ; no valid marker for this file
1065 (setq loc (or line 1)) ; normalize no linenumber to line 1
1066 (catch 'marker ; find nearest loc, at least one exists
1067 (dolist (x (cddr (compilation--file-struct->loc-tree
1068 file-struct))) ; Loop over remaining lines.
1069 (if (> (car x) loc) ; Still bigger.
1070 (setq marker-line x)
1071 (if (> (- (or (car marker-line) 1) loc)
1072 (- loc (car x))) ; Current line is nearer.
1073 (setq marker-line x))
1074 (throw 'marker t))))
1075 (setq marker (compilation--loc->marker (cadr marker-line))
1076 marker-line (or (car marker-line) 1))
1077 (with-current-buffer (marker-buffer marker)
1078 (let ((screen-columns
1079 ;; Obey the compilation-error-screen-columns of the target
1080 ;; buffer if its major mode set it buffer-locally.
1081 (if (local-variable-p 'compilation-error-screen-columns)
1082 compilation-error-screen-columns screen-columns))
1083 (compilation-first-column
1084 (if (local-variable-p 'compilation-first-column)
1085 compilation-first-column first-column)))
1086 (save-excursion
1087 (save-restriction
1088 (widen)
1089 (goto-char (marker-position marker))
1090 (when (or end-col end-line)
1091 (beginning-of-line (- (or end-line line) marker-line -1))
1092 (if (or (null end-col) (< end-col 0))
1093 (end-of-line)
1094 (compilation-move-to-column end-col screen-columns))
1095 (setq end-marker (point-marker)))
1096 (beginning-of-line (if end-line
1097 (- line end-line -1)
1098 (- loc marker-line -1)))
1099 (if col
1100 (compilation-move-to-column col screen-columns)
1101 (forward-to-indentation 0))
1102 (setq marker (point-marker)))))))
1104 (setq loc (compilation-assq line (compilation--file-struct->loc-tree
1105 file-struct)))
1106 (setq end-loc
1107 (if end-line
1108 (compilation-assq
1109 end-col (compilation-assq
1110 end-line (compilation--file-struct->loc-tree
1111 file-struct)))
1112 (if end-col ; use same line element
1113 (compilation-assq end-col loc))))
1114 (setq loc (compilation-assq col loc))
1115 ;; If they are new, make the loc(s) reference the file they point to.
1116 ;; FIXME-omake: there's a problem with timestamps here: the markers
1117 ;; relative to which we computed the current `marker' have a timestamp
1118 ;; almost guaranteed to be different from compilation-buffer-modtime, so if
1119 ;; we use their timestamp, we'll never use `loc' since the timestamp won't
1120 ;; match compilation-buffer-modtime, and if we use
1121 ;; compilation-buffer-modtime then we have different timestamps for
1122 ;; locations that were computed together, which doesn't make sense either.
1123 ;; I think this points to a fundamental problem in our approach to the
1124 ;; "omake -P" problem. --Stef
1125 (or (cdr loc)
1126 (setcdr loc (compilation--make-cdrloc line file-struct marker)))
1127 (if end-loc
1128 (or (cdr end-loc)
1129 (setcdr end-loc
1130 (compilation--make-cdrloc (or end-line line) file-struct
1131 end-marker))))
1133 ;; Must start with face
1134 `(font-lock-face ,compilation-message-face
1135 compilation-message ,(compilation--make-message loc type end-loc)
1136 help-echo ,(if col
1137 "mouse-2: visit this file, line and column"
1138 (if line
1139 "mouse-2: visit this file and line"
1140 "mouse-2: visit this file"))
1141 keymap compilation-button-map
1142 mouse-face highlight)))
1144 (defun compilation--put-prop (matchnum prop val)
1145 (when (and (integerp matchnum) (match-beginning matchnum))
1146 (put-text-property
1147 (match-beginning matchnum) (match-end matchnum)
1148 prop val)))
1150 (defun compilation--remove-properties (&optional start end)
1151 (with-silent-modifications
1152 ;; When compile.el used font-lock directly, we could just remove all
1153 ;; our text-properties in one go, but now that we manually place
1154 ;; font-lock-face, we have to be careful to only remove the font-lock-face
1155 ;; we placed.
1156 ;; (remove-list-of-text-properties
1157 ;; (or start (point-min)) (or end (point-max))
1158 ;; '(compilation-debug compilation-directory compilation-message
1159 ;; font-lock-face help-echo mouse-face))
1160 (let (next)
1161 (unless start (setq start (point-min)))
1162 (unless end (setq end (point-max)))
1163 (compilation--flush-directory-cache start end)
1164 (while
1165 (progn
1166 (setq next (or (next-single-property-change
1167 start 'compilation-message nil end)
1168 end))
1169 (when (get-text-property start 'compilation-message)
1170 (remove-list-of-text-properties
1171 start next
1172 '(compilation-debug compilation-directory compilation-message
1173 font-lock-face help-echo mouse-face)))
1174 (< next end))
1175 (setq start next)))))
1177 (defun compilation--parse-region (start end)
1178 (goto-char end)
1179 (unless (bolp)
1180 ;; We generally don't like to parse partial lines.
1181 (assert (eobp))
1182 (when (let ((proc (get-buffer-process (current-buffer))))
1183 (and proc (memq (process-status proc) '(run open))))
1184 (setq end (line-beginning-position))))
1185 (compilation--remove-properties start end)
1186 (if compilation-parse-errors-function
1187 ;; An old package! Try the compatibility code.
1188 (progn
1189 (goto-char start)
1190 (compilation--compat-parse-errors end))
1192 ;; compilation-directory-matcher is the only part that really needs to be
1193 ;; parsed sequentially. So we could split it out, handle directories
1194 ;; like syntax-propertize, and the rest as font-lock-keywords. But since
1195 ;; we want to have it work even when font-lock is off, we'd then need to
1196 ;; use our own compilation-parsed text-property to keep track of the parts
1197 ;; that have already been parsed.
1198 (goto-char start)
1199 (while (re-search-forward (car compilation-directory-matcher)
1200 end t)
1201 (compilation--flush-directory-cache (match-beginning 0) (match-end 0))
1202 (when compilation-debug
1203 (font-lock-append-text-property
1204 (match-beginning 0) (match-end 0)
1205 'compilation-debug
1206 (vector 'directory compilation-directory-matcher)))
1207 (dolist (elt (cdr compilation-directory-matcher))
1208 (add-text-properties (match-beginning (car elt))
1209 (match-end (car elt))
1210 (compilation-directory-properties
1211 (car elt) (cdr elt)))))
1213 (compilation-parse-errors start end)))
1215 (defun compilation-parse-errors (start end &rest rules)
1216 "Parse errors between START and END.
1217 The errors recognized are the ones specified in RULES which default
1218 to `compilation-error-regexp-alist' if RULES is nil."
1219 (dolist (item (or rules compilation-error-regexp-alist))
1220 (if (symbolp item)
1221 (setq item (cdr (assq item
1222 compilation-error-regexp-alist-alist))))
1223 (let ((file (nth 1 item))
1224 (line (nth 2 item))
1225 (col (nth 3 item))
1226 (type (nth 4 item))
1227 (pat (car item))
1228 end-line end-col fmt
1229 props)
1231 ;; omake reports some error indented, so skip the indentation.
1232 ;; another solution is to modify (some?) regexps in
1233 ;; `compilation-error-regexp-alist'.
1234 ;; note that omake usage is not limited to ocaml and C (for stubs).
1235 ;; FIXME-omake: Doing it here seems wrong, at least it should depend on
1236 ;; whether or not omake's own error messages are recognized.
1237 (cond
1238 ((not (memq 'omake compilation-error-regexp-alist)) nil)
1239 ((string-match "\\`\\([^^]\\|^\\( \\*\\|\\[\\)\\)" pat)
1240 nil) ;; Not anchored or anchored but already allows empty spaces.
1241 (t (setq pat (concat "^ *" (substring pat 1)))))
1243 (if (consp file) (setq fmt (cdr file) file (car file)))
1244 (if (consp line) (setq end-line (cdr line) line (car line)))
1245 (if (consp col) (setq end-col (cdr col) col (car col)))
1247 (if (functionp line)
1248 ;; The old compile.el had here an undocumented hook that
1249 ;; allowed `line' to be a function that computed the actual
1250 ;; error location. Let's do our best.
1251 (progn
1252 (goto-char start)
1253 (while (re-search-forward pat end t)
1254 (save-match-data
1255 (when compilation-debug
1256 (font-lock-append-text-property
1257 (match-beginning 0) (match-end 0)
1258 'compilation-debug (vector 'functionp item)))
1259 (add-text-properties
1260 (match-beginning 0) (match-end 0)
1261 (compilation--compat-error-properties
1262 (funcall line (cons (match-string file)
1263 (cons default-directory
1264 (nthcdr 4 item)))
1265 (if col (match-string col))))))
1266 (compilation--put-prop
1267 file 'font-lock-face compilation-error-face)))
1269 (unless (or (null (nth 5 item)) (integerp (nth 5 item)))
1270 (error "HYPERLINK should be an integer: %s" (nth 5 item)))
1272 (goto-char start)
1273 (while (re-search-forward pat end t)
1274 (when (setq props (compilation-error-properties
1275 file line end-line col end-col (or type 2) fmt))
1277 (when (integerp file)
1278 (compilation--put-prop
1279 file 'font-lock-face
1280 (if (consp type)
1281 (compilation-face type)
1282 (symbol-value (aref [compilation-info-face
1283 compilation-warning-face
1284 compilation-error-face]
1285 (or type 2))))))
1287 (compilation--put-prop
1288 line 'font-lock-face compilation-line-face)
1289 (compilation--put-prop
1290 end-line 'font-lock-face compilation-line-face)
1292 (compilation--put-prop
1293 col 'font-lock-face compilation-column-face)
1294 (compilation--put-prop
1295 end-col 'font-lock-face compilation-column-face)
1297 (dolist (extra-item (nthcdr 6 item))
1298 (let ((mn (pop extra-item)))
1299 (when (match-beginning mn)
1300 (let ((face (eval (car extra-item))))
1301 (cond
1302 ((null face))
1303 ((symbolp face)
1304 (put-text-property
1305 (match-beginning mn) (match-end mn)
1306 'font-lock-face face))
1308 (error "Don't know how to handle face %S"
1309 face)))))))
1310 (let ((mn (or (nth 5 item) 0)))
1311 (when compilation-debug
1312 (font-lock-append-text-property
1313 (match-beginning 0) (match-end 0)
1314 'compilation-debug (vector 'std item props)))
1315 (add-text-properties
1316 (match-beginning mn) (match-end mn)
1317 (cddr props))
1318 (font-lock-append-text-property
1319 (match-beginning mn) (match-end mn)
1320 'font-lock-face (cadr props)))))))))
1322 (defvar compilation--parsed -1)
1323 (make-variable-buffer-local 'compilation--parsed)
1325 (defun compilation--ensure-parse (limit)
1326 "Make sure the text has been parsed up to LIMIT."
1327 (save-excursion
1328 (goto-char limit)
1329 (setq limit (line-beginning-position 2))
1330 (unless (markerp compilation--parsed)
1331 ;; We use a marker for compilation--parsed so that users (such as
1332 ;; grep.el) don't need to flush-parse when they modify the buffer
1333 ;; in a way that impacts buffer positions but does not require
1334 ;; re-parsing.
1335 (setq compilation--parsed (point-min-marker)))
1336 (when (< compilation--parsed limit)
1337 (let ((start (max compilation--parsed (point-min))))
1338 (move-marker compilation--parsed limit)
1339 (goto-char start)
1340 (forward-line 0) ;Not line-beginning-position: ignore (comint) fields.
1341 (with-silent-modifications
1342 (compilation--parse-region (point) compilation--parsed)))))
1343 nil)
1345 (defun compilation--flush-parse (start _end)
1346 "Mark the region between START and END for re-parsing."
1347 (if (markerp compilation--parsed)
1348 (move-marker compilation--parsed (min start compilation--parsed))))
1350 (defun compilation-mode-font-lock-keywords ()
1351 "Return expressions to highlight in Compilation mode."
1352 (append
1353 '((compilation--ensure-parse))
1354 compilation-mode-font-lock-keywords))
1356 (defun compilation-read-command (command)
1357 (read-shell-command "Compile command: " command
1358 (if (equal (car compile-history) command)
1359 '(compile-history . 1)
1360 'compile-history)))
1363 ;;;###autoload
1364 (defun compile (command &optional comint)
1365 "Compile the program including the current buffer. Default: run `make'.
1366 Runs COMMAND, a shell command, in a separate process asynchronously
1367 with output going to the buffer `*compilation*'.
1369 You can then use the command \\[next-error] to find the next error message
1370 and move to the source code that caused it.
1372 If optional second arg COMINT is t the buffer will be in Comint mode with
1373 `compilation-shell-minor-mode'.
1375 Interactively, prompts for the command if `compilation-read-command' is
1376 non-nil; otherwise uses `compile-command'. With prefix arg, always prompts.
1377 Additionally, with universal prefix arg, compilation buffer will be in
1378 comint mode, i.e. interactive.
1380 To run more than one compilation at once, start one then rename
1381 the \`*compilation*' buffer to some other name with
1382 \\[rename-buffer]. Then _switch buffers_ and start the new compilation.
1383 It will create a new \`*compilation*' buffer.
1385 On most systems, termination of the main compilation process
1386 kills its subprocesses.
1388 The name used for the buffer is actually whatever is returned by
1389 the function in `compilation-buffer-name-function', so you can set that
1390 to a function that generates a unique name."
1391 (interactive
1392 (list
1393 (let ((command (eval compile-command)))
1394 (if (or compilation-read-command current-prefix-arg)
1395 (compilation-read-command command)
1396 command))
1397 (consp current-prefix-arg)))
1398 (unless (equal command (eval compile-command))
1399 (setq compile-command command))
1400 (save-some-buffers (not compilation-ask-about-save)
1401 compilation-save-buffers-predicate)
1402 (setq-default compilation-directory default-directory)
1403 (compilation-start command comint))
1405 ;; run compile with the default command line
1406 (defun recompile (&optional edit-command)
1407 "Re-compile the program including the current buffer.
1408 If this is run in a Compilation mode buffer, re-use the arguments from the
1409 original use. Otherwise, recompile using `compile-command'.
1410 If the optional argument `edit-command' is non-nil, the command can be edited."
1411 (interactive "P")
1412 (save-some-buffers (not compilation-ask-about-save)
1413 compilation-save-buffers-predicate)
1414 (let ((default-directory (or compilation-directory default-directory)))
1415 (when edit-command
1416 (setcar compilation-arguments
1417 (compilation-read-command (car compilation-arguments))))
1418 (apply 'compilation-start (or compilation-arguments
1419 `(,(eval compile-command))))))
1421 (defcustom compilation-scroll-output nil
1422 "Non-nil to scroll the *compilation* buffer window as output appears.
1424 Setting it causes the Compilation mode commands to put point at the
1425 end of their output window so that the end of the output is always
1426 visible rather than the beginning.
1428 The value `first-error' stops scrolling at the first error, and leaves
1429 point on its location in the *compilation* buffer."
1430 :type '(choice (const :tag "No scrolling" nil)
1431 (const :tag "Scroll compilation output" t)
1432 (const :tag "Stop scrolling at the first error" first-error))
1433 :version "20.3"
1434 :group 'compilation)
1437 (defun compilation-buffer-name (name-of-mode mode-command name-function)
1438 "Return the name of a compilation buffer to use.
1439 If NAME-FUNCTION is non-nil, call it with one argument NAME-OF-MODE
1440 to determine the buffer name.
1441 Likewise if `compilation-buffer-name-function' is non-nil.
1442 If current buffer has the major mode MODE-COMMAND,
1443 return the name of the current buffer, so that it gets reused.
1444 Otherwise, construct a buffer name from NAME-OF-MODE."
1445 (cond (name-function
1446 (funcall name-function name-of-mode))
1447 (compilation-buffer-name-function
1448 (funcall compilation-buffer-name-function name-of-mode))
1449 ((eq mode-command major-mode)
1450 (buffer-name))
1452 (concat "*" (downcase name-of-mode) "*"))))
1454 ;; This is a rough emulation of the old hack, until the transition to new
1455 ;; compile is complete.
1456 (defun compile-internal (command error-message
1457 &optional _name-of-mode parser
1458 error-regexp-alist name-function
1459 _enter-regexp-alist _leave-regexp-alist
1460 file-regexp-alist _nomessage-regexp-alist
1461 _no-async highlight-regexp _local-map)
1462 (if parser
1463 (error "Compile now works very differently, see `compilation-error-regexp-alist'"))
1464 (let ((compilation-error-regexp-alist
1465 (append file-regexp-alist (or error-regexp-alist
1466 compilation-error-regexp-alist)))
1467 (compilation-error (replace-regexp-in-string "^No more \\(.+\\)s\\.?"
1468 "\\1" error-message)))
1469 (compilation-start command nil name-function highlight-regexp)))
1470 (make-obsolete 'compile-internal 'compilation-start "22.1")
1472 ;;;###autoload
1473 (defun compilation-start (command &optional mode name-function highlight-regexp)
1474 "Run compilation command COMMAND (low level interface).
1475 If COMMAND starts with a cd command, that becomes the `default-directory'.
1476 The rest of the arguments are optional; for them, nil means use the default.
1478 MODE is the major mode to set in the compilation buffer. Mode
1479 may also be t meaning use `compilation-shell-minor-mode' under `comint-mode'.
1481 If NAME-FUNCTION is non-nil, call it with one argument (the mode name)
1482 to determine the buffer name. Otherwise, the default is to
1483 reuses the current buffer if it has the proper major mode,
1484 else use or create a buffer with name based on the major mode.
1486 If HIGHLIGHT-REGEXP is non-nil, `next-error' will temporarily highlight
1487 the matching section of the visited source line; the default is to use the
1488 global value of `compilation-highlight-regexp'.
1490 Returns the compilation buffer created."
1491 (or mode (setq mode 'compilation-mode))
1492 (let* ((name-of-mode
1493 (if (eq mode t)
1494 "compilation"
1495 (replace-regexp-in-string "-mode\\'" "" (symbol-name mode))))
1496 (thisdir default-directory)
1497 (thisenv compilation-environment)
1498 outwin outbuf)
1499 (with-current-buffer
1500 (setq outbuf
1501 (get-buffer-create
1502 (compilation-buffer-name name-of-mode mode name-function)))
1503 (let ((comp-proc (get-buffer-process (current-buffer))))
1504 (if comp-proc
1505 (if (or (not (eq (process-status comp-proc) 'run))
1506 (yes-or-no-p
1507 (format "A %s process is running; kill it? "
1508 name-of-mode)))
1509 (condition-case ()
1510 (progn
1511 (interrupt-process comp-proc)
1512 (sit-for 1)
1513 (delete-process comp-proc))
1514 (error nil))
1515 (error "Cannot have two processes in `%s' at once"
1516 (buffer-name)))))
1517 ;; first transfer directory from where M-x compile was called
1518 (setq default-directory thisdir)
1519 ;; Make compilation buffer read-only. The filter can still write it.
1520 ;; Clear out the compilation buffer.
1521 (let ((inhibit-read-only t)
1522 (default-directory thisdir))
1523 ;; Then evaluate a cd command if any, but don't perform it yet, else
1524 ;; start-command would do it again through the shell: (cd "..") AND
1525 ;; sh -c "cd ..; make"
1526 (cd (if (string-match "\\`\\s *cd\\(?:\\s +\\(\\S +?\\)\\)?\\s *[;&\n]"
1527 command)
1528 (if (match-end 1)
1529 (substitute-env-vars (match-string 1 command))
1530 "~")
1531 default-directory))
1532 (erase-buffer)
1533 ;; Select the desired mode.
1534 (if (not (eq mode t))
1535 (progn
1536 (buffer-disable-undo)
1537 (funcall mode))
1538 (setq buffer-read-only nil)
1539 (with-no-warnings (comint-mode))
1540 (compilation-shell-minor-mode))
1541 ;; Remember the original dir, so we can use it when we recompile.
1542 ;; default-directory' can't be used reliably for that because it may be
1543 ;; affected by the special handling of "cd ...;".
1544 ;; NB: must be done after (funcall mode) as that resets local variables
1545 (set (make-local-variable 'compilation-directory) thisdir)
1546 (set (make-local-variable 'compilation-environment) thisenv)
1547 (if highlight-regexp
1548 (set (make-local-variable 'compilation-highlight-regexp)
1549 highlight-regexp))
1550 (if (or compilation-auto-jump-to-first-error
1551 (eq compilation-scroll-output 'first-error))
1552 (set (make-local-variable 'compilation-auto-jump-to-next) t))
1553 ;; Output a mode setter, for saving and later reloading this buffer.
1554 (insert "-*- mode: " name-of-mode
1555 "; default-directory: "
1556 (prin1-to-string (abbreviate-file-name default-directory))
1557 " -*-\n"
1558 (format "%s started at %s\n\n"
1559 mode-name
1560 (substring (current-time-string) 0 19))
1561 command "\n")
1562 (setq thisdir default-directory))
1563 (set-buffer-modified-p nil))
1564 ;; Pop up the compilation buffer.
1565 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01638.html
1566 (setq outwin (display-buffer outbuf))
1567 (with-current-buffer outbuf
1568 (let ((process-environment
1569 (append
1570 compilation-environment
1571 (if (if (boundp 'system-uses-terminfo) ; `if' for compiler warning
1572 system-uses-terminfo)
1573 (list "TERM=dumb" "TERMCAP="
1574 (format "COLUMNS=%d" (window-width)))
1575 (list "TERM=emacs"
1576 (format "TERMCAP=emacs:co#%d:tc=unknown:"
1577 (window-width))))
1578 ;; Set the EMACS variable, but
1579 ;; don't override users' setting of $EMACS.
1580 (unless (getenv "EMACS")
1581 (list "EMACS=t"))
1582 (list "INSIDE_EMACS=t")
1583 (copy-sequence process-environment))))
1584 (set (make-local-variable 'compilation-arguments)
1585 (list command mode name-function highlight-regexp))
1586 (set (make-local-variable 'revert-buffer-function)
1587 'compilation-revert-buffer)
1588 (set-window-start outwin (point-min))
1590 ;; Position point as the user will see it.
1591 (let ((desired-visible-point
1592 ;; Put it at the end if `compilation-scroll-output' is set.
1593 (if compilation-scroll-output
1594 (point-max)
1595 ;; Normally put it at the top.
1596 (point-min))))
1597 (if (eq outwin (selected-window))
1598 (goto-char desired-visible-point)
1599 (set-window-point outwin desired-visible-point)))
1601 ;; The setup function is called before compilation-set-window-height
1602 ;; so it can set the compilation-window-height buffer locally.
1603 (if compilation-process-setup-function
1604 (funcall compilation-process-setup-function))
1605 (compilation-set-window-height outwin)
1606 ;; Start the compilation.
1607 (if (fboundp 'start-process)
1608 (let ((proc
1609 (if (eq mode t)
1610 ;; comint uses `start-file-process'.
1611 (get-buffer-process
1612 (with-no-warnings
1613 (comint-exec
1614 outbuf (downcase mode-name)
1615 (if (file-remote-p default-directory)
1616 "/bin/sh"
1617 shell-file-name)
1618 nil `("-c" ,command))))
1619 (start-file-process-shell-command (downcase mode-name)
1620 outbuf command))))
1621 ;; Make the buffer's mode line show process state.
1622 (setq mode-line-process
1623 (list (propertize ":%s" 'face 'compilation-warning)))
1624 (set-process-sentinel proc 'compilation-sentinel)
1625 (unless (eq mode t)
1626 ;; Keep the comint filter, since it's needed for proper handling
1627 ;; of the prompts.
1628 (set-process-filter proc 'compilation-filter))
1629 ;; Use (point-max) here so that output comes in
1630 ;; after the initial text,
1631 ;; regardless of where the user sees point.
1632 (set-marker (process-mark proc) (point-max) outbuf)
1633 (when compilation-disable-input
1634 (condition-case nil
1635 (process-send-eof proc)
1636 ;; The process may have exited already.
1637 (error nil)))
1638 (run-hook-with-args 'compilation-start-hook proc)
1639 (setq compilation-in-progress
1640 (cons proc compilation-in-progress)))
1641 ;; No asynchronous processes available.
1642 (message "Executing `%s'..." command)
1643 ;; Fake modeline display as if `start-process' were run.
1644 (setq mode-line-process
1645 (list (propertize ":run" 'face 'compilation-warning)))
1646 (force-mode-line-update)
1647 (sit-for 0) ; Force redisplay
1648 (save-excursion
1649 ;; Insert the output at the end, after the initial text,
1650 ;; regardless of where the user sees point.
1651 (goto-char (point-max))
1652 (let* ((inhibit-read-only t) ; call-process needs to modify outbuf
1653 (compilation-filter-start (point))
1654 (status (call-process shell-file-name nil outbuf nil "-c"
1655 command)))
1656 (run-hooks 'compilation-filter-hook)
1657 (cond ((numberp status)
1658 (compilation-handle-exit
1659 'exit status
1660 (if (zerop status)
1661 "finished\n"
1662 (format "exited abnormally with code %d\n" status))))
1663 ((stringp status)
1664 (compilation-handle-exit 'signal status
1665 (concat status "\n")))
1667 (compilation-handle-exit 'bizarre status status)))))
1668 (set-buffer-modified-p nil)
1669 (message "Executing `%s'...done" command)))
1670 ;; Now finally cd to where the shell started make/grep/...
1671 (setq default-directory thisdir)
1672 ;; The following form selected outwin ever since revision 1.183,
1673 ;; so possibly messing up point in some other window (bug#1073).
1674 ;; Moved into the scope of with-current-buffer, though still with
1675 ;; complete disregard for the case when compilation-scroll-output
1676 ;; equals 'first-error (martin 2008-10-04).
1677 (when compilation-scroll-output
1678 (goto-char (point-max))))
1680 ;; Make it so the next C-x ` will use this buffer.
1681 (setq next-error-last-buffer outbuf)))
1683 (defun compilation-set-window-height (window)
1684 "Set the height of WINDOW according to `compilation-window-height'."
1685 (let ((height (buffer-local-value 'compilation-window-height (window-buffer window))))
1686 (and height
1687 (window-full-width-p window)
1688 ;; If window is alone in its frame, aside from a minibuffer,
1689 ;; don't change its height.
1690 (not (eq window (frame-root-window (window-frame window))))
1691 ;; Stef said that doing the saves in this order is safer:
1692 (save-excursion
1693 (save-selected-window
1694 (select-window window)
1695 (enlarge-window (- height (window-height))))))))
1697 (defvar compilation-menu-map
1698 (let ((map (make-sparse-keymap "Errors"))
1699 (opt-map (make-sparse-keymap "Skip")))
1700 (define-key map [stop-subjob]
1701 '(menu-item "Stop Compilation" kill-compilation
1702 :help "Kill the process made by the M-x compile or M-x grep commands"))
1703 (define-key map [compilation-mode-separator3]
1704 '("----" . nil))
1705 (define-key map [compilation-next-error-follow-minor-mode]
1706 '(menu-item
1707 "Auto Error Display" next-error-follow-minor-mode
1708 :help "Display the error under cursor when moving the cursor"
1709 :button (:toggle . next-error-follow-minor-mode)))
1710 (define-key map [compilation-skip]
1711 (cons "Skip Less Important Messages" opt-map))
1712 (define-key opt-map [compilation-skip-none]
1713 '(menu-item "Don't Skip Any Messages"
1714 (lambda ()
1715 (interactive)
1716 (customize-set-variable 'compilation-skip-threshold 0))
1717 :help "Do not skip any type of messages"
1718 :button (:radio . (eq compilation-skip-threshold 0))))
1719 (define-key opt-map [compilation-skip-info]
1720 '(menu-item "Skip Info"
1721 (lambda ()
1722 (interactive)
1723 (customize-set-variable 'compilation-skip-threshold 1))
1724 :help "Skip anything less than warning"
1725 :button (:radio . (eq compilation-skip-threshold 1))))
1726 (define-key opt-map [compilation-skip-warning-and-info]
1727 '(menu-item "Skip Warnings and Info"
1728 (lambda ()
1729 (interactive)
1730 (customize-set-variable 'compilation-skip-threshold 2))
1731 :help "Skip over Warnings and Info, stop for errors"
1732 :button (:radio . (eq compilation-skip-threshold 2))))
1733 (define-key map [compilation-mode-separator2]
1734 '("----" . nil))
1735 (define-key map [compilation-first-error]
1736 '(menu-item "First Error" first-error
1737 :help "Restart at the first error, visit corresponding source code"))
1738 (define-key map [compilation-previous-error]
1739 '(menu-item "Previous Error" previous-error
1740 :help "Visit previous `next-error' message and corresponding source code"))
1741 (define-key map [compilation-next-error]
1742 '(menu-item "Next Error" next-error
1743 :help "Visit next `next-error' message and corresponding source code"))
1744 map))
1746 (defvar compilation-minor-mode-map
1747 (let ((map (make-sparse-keymap)))
1748 (set-keymap-parent map special-mode-map)
1749 (define-key map [mouse-2] 'compile-goto-error)
1750 (define-key map [follow-link] 'mouse-face)
1751 (define-key map "\C-c\C-c" 'compile-goto-error)
1752 (define-key map "\C-m" 'compile-goto-error)
1753 (define-key map "\C-c\C-k" 'kill-compilation)
1754 (define-key map "\M-n" 'compilation-next-error)
1755 (define-key map "\M-p" 'compilation-previous-error)
1756 (define-key map "\M-{" 'compilation-previous-file)
1757 (define-key map "\M-}" 'compilation-next-file)
1758 (define-key map "g" 'recompile) ; revert
1759 ;; Set up the menu-bar
1760 (define-key map [menu-bar compilation]
1761 (cons "Errors" compilation-menu-map))
1762 map)
1763 "Keymap for `compilation-minor-mode'.")
1765 (defvar compilation-shell-minor-mode-map
1766 (let ((map (make-sparse-keymap)))
1767 (define-key map "\M-\C-m" 'compile-goto-error)
1768 (define-key map "\M-\C-n" 'compilation-next-error)
1769 (define-key map "\M-\C-p" 'compilation-previous-error)
1770 (define-key map "\M-{" 'compilation-previous-file)
1771 (define-key map "\M-}" 'compilation-next-file)
1772 ;; Set up the menu-bar
1773 (define-key map [menu-bar compilation]
1774 (cons "Errors" compilation-menu-map))
1775 map)
1776 "Keymap for `compilation-shell-minor-mode'.")
1778 (defvar compilation-button-map
1779 (let ((map (make-sparse-keymap)))
1780 (define-key map [mouse-2] 'compile-goto-error)
1781 (define-key map [follow-link] 'mouse-face)
1782 (define-key map "\C-m" 'compile-goto-error)
1783 map)
1784 "Keymap for compilation-message buttons.")
1785 (fset 'compilation-button-map compilation-button-map)
1787 (defvar compilation-mode-map
1788 (let ((map (make-sparse-keymap)))
1789 ;; Don't inherit from compilation-minor-mode-map,
1790 ;; because that introduces a menu bar item we don't want.
1791 ;; That confuses C-down-mouse-3.
1792 (set-keymap-parent map special-mode-map)
1793 (define-key map [mouse-2] 'compile-goto-error)
1794 (define-key map [follow-link] 'mouse-face)
1795 (define-key map "\C-c\C-c" 'compile-goto-error)
1796 (define-key map "\C-m" 'compile-goto-error)
1797 (define-key map "\C-c\C-k" 'kill-compilation)
1798 (define-key map "\M-n" 'compilation-next-error)
1799 (define-key map "\M-p" 'compilation-previous-error)
1800 (define-key map "\M-{" 'compilation-previous-file)
1801 (define-key map "\M-}" 'compilation-next-file)
1802 (define-key map "\t" 'compilation-next-error)
1803 (define-key map [backtab] 'compilation-previous-error)
1804 (define-key map "g" 'recompile) ; revert
1806 (define-key map "\C-c\C-f" 'next-error-follow-minor-mode)
1808 ;; Set up the menu-bar
1809 (let ((submap (make-sparse-keymap "Compile")))
1810 (define-key map [menu-bar compilation]
1811 (cons "Compile" submap))
1812 (set-keymap-parent submap compilation-menu-map))
1813 (define-key map [menu-bar compilation compilation-separator2]
1814 '("----" . nil))
1815 (define-key map [menu-bar compilation compilation-grep]
1816 '(menu-item "Search Files (grep)..." grep
1817 :help "Run grep, with user-specified args, and collect output in a buffer"))
1818 (define-key map [menu-bar compilation compilation-recompile]
1819 '(menu-item "Recompile" recompile
1820 :help "Re-compile the program including the current buffer"))
1821 (define-key map [menu-bar compilation compilation-compile]
1822 '(menu-item "Compile..." compile
1823 :help "Compile the program including the current buffer. Default: run `make'"))
1824 map)
1825 "Keymap for compilation log buffers.
1826 `compilation-minor-mode-map' is a parent of this.")
1828 (defvar compilation-mode-tool-bar-map
1829 ;; When bootstrapping, tool-bar-map is not properly initialized yet,
1830 ;; so don't do anything.
1831 (when (keymapp tool-bar-map)
1832 (let ((map (copy-keymap tool-bar-map)))
1833 (define-key map [undo] nil)
1834 (define-key map [separator-2] nil)
1835 (define-key-after map [separator-compile] menu-bar-separator)
1836 (tool-bar-local-item
1837 "left-arrow" 'previous-error-no-select 'previous-error-no-select map
1838 :rtl "right-arrow"
1839 :help "Goto previous error")
1840 (tool-bar-local-item
1841 "right-arrow" 'next-error-no-select 'next-error-no-select map
1842 :rtl "left-arrow"
1843 :help "Goto next error")
1844 (tool-bar-local-item
1845 "cancel" 'kill-compilation 'kill-compilation map
1846 :enable '(let ((buffer (compilation-find-buffer)))
1847 (get-buffer-process buffer))
1848 :help "Stop compilation")
1849 (tool-bar-local-item
1850 "refresh" 'recompile 'recompile map
1851 :help "Restart compilation")
1852 map)))
1854 (put 'compilation-mode 'mode-class 'special)
1856 ;;;###autoload
1857 (defun compilation-mode (&optional name-of-mode)
1858 "Major mode for compilation log buffers.
1859 \\<compilation-mode-map>To visit the source for a line-numbered error,
1860 move point to the error message line and type \\[compile-goto-error].
1861 To kill the compilation, type \\[kill-compilation].
1863 Runs `compilation-mode-hook' with `run-mode-hooks' (which see).
1865 \\{compilation-mode-map}"
1866 (interactive)
1867 (kill-all-local-variables)
1868 (use-local-map compilation-mode-map)
1869 ;; Let windows scroll along with the output.
1870 (set (make-local-variable 'window-point-insertion-type) t)
1871 (set (make-local-variable 'tool-bar-map) compilation-mode-tool-bar-map)
1872 (setq major-mode 'compilation-mode ; FIXME: Use define-derived-mode.
1873 mode-name (or name-of-mode "Compilation"))
1874 (set (make-local-variable 'page-delimiter)
1875 compilation-page-delimiter)
1876 ;; (set (make-local-variable 'compilation-buffer-modtime) nil)
1877 (compilation-setup)
1878 (setq buffer-read-only t)
1879 (run-mode-hooks 'compilation-mode-hook))
1881 (defmacro define-compilation-mode (mode name doc &rest body)
1882 "This is like `define-derived-mode' without the PARENT argument.
1883 The parent is always `compilation-mode' and the customizable `compilation-...'
1884 variables are also set from the name of the mode you have chosen,
1885 by replacing the first word, e.g `compilation-scroll-output' from
1886 `grep-scroll-output' if that variable exists."
1887 (let ((mode-name (replace-regexp-in-string "-mode\\'" "" (symbol-name mode))))
1888 `(define-derived-mode ,mode compilation-mode ,name
1889 ,doc
1890 ,@(mapcar (lambda (v)
1891 (setq v (cons v
1892 (intern-soft (replace-regexp-in-string
1893 "^compilation" mode-name
1894 (symbol-name v)))))
1895 (and (cdr v)
1896 (or (boundp (cdr v))
1897 ;; FIXME: This is hackish, using undocumented info.
1898 (if (boundp 'byte-compile-bound-variables)
1899 (memq (cdr v) byte-compile-bound-variables)))
1900 `(set (make-local-variable ',(car v)) ,(cdr v))))
1901 '(compilation-buffer-name-function
1902 compilation-directory-matcher
1903 compilation-error
1904 compilation-error-regexp-alist
1905 compilation-error-regexp-alist-alist
1906 compilation-error-screen-columns
1907 compilation-finish-function
1908 compilation-finish-functions
1909 compilation-first-column
1910 compilation-mode-font-lock-keywords
1911 compilation-page-delimiter
1912 compilation-parse-errors-filename-function
1913 compilation-process-setup-function
1914 compilation-scroll-output
1915 compilation-search-path
1916 compilation-skip-threshold
1917 compilation-window-height))
1918 ,@body)))
1920 (defun compilation-revert-buffer (ignore-auto noconfirm)
1921 (if buffer-file-name
1922 (let (revert-buffer-function)
1923 (revert-buffer ignore-auto noconfirm))
1924 (if (or noconfirm (yes-or-no-p (format "Restart compilation? ")))
1925 (apply 'compilation-start compilation-arguments))))
1927 (defvar compilation-current-error nil
1928 "Marker to the location from where the next error will be found.
1929 The global commands next/previous/first-error/goto-error use this.")
1931 (defvar compilation-messages-start nil
1932 "Buffer position of the beginning of the compilation messages.
1933 If nil, use the beginning of buffer.")
1935 (defun compilation-setup (&optional minor)
1936 "Prepare the buffer for the compilation parsing commands to work.
1937 Optional argument MINOR indicates this is called from
1938 `compilation-minor-mode'."
1939 (make-local-variable 'compilation-current-error)
1940 (make-local-variable 'compilation-messages-start)
1941 (make-local-variable 'compilation-error-screen-columns)
1942 (make-local-variable 'overlay-arrow-position)
1943 (set (make-local-variable 'overlay-arrow-string) "")
1944 (setq next-error-overlay-arrow-position nil)
1945 (add-hook 'kill-buffer-hook
1946 (lambda () (setq next-error-overlay-arrow-position nil)) nil t)
1947 ;; Note that compilation-next-error-function is for interfacing
1948 ;; with the next-error function in simple.el, and it's only
1949 ;; coincidentally named similarly to compilation-next-error.
1950 (setq next-error-function 'compilation-next-error-function)
1951 (set (make-local-variable 'comint-file-name-prefix)
1952 (or (file-remote-p default-directory) ""))
1953 (set (make-local-variable 'compilation-locs)
1954 (make-hash-table :test 'equal :weakness 'value))
1955 ;; It's generally preferable to use after-change-functions since they
1956 ;; can be subject to combine-after-change-calls, but if we do that, we risk
1957 ;; running our hook after font-lock, resulting in incorrect refontification.
1958 (add-hook 'before-change-functions 'compilation--flush-parse nil t)
1959 ;; Also for minor mode, since it's not permanent-local.
1960 (add-hook 'change-major-mode-hook #'compilation--remove-properties nil t)
1961 (if minor
1962 (progn
1963 (font-lock-add-keywords nil (compilation-mode-font-lock-keywords))
1964 (if font-lock-mode
1965 (font-lock-fontify-buffer)))
1966 (setq font-lock-defaults '(compilation-mode-font-lock-keywords t))))
1968 (defun compilation--unsetup ()
1969 ;; Only for minor mode.
1970 (font-lock-remove-keywords nil (compilation-mode-font-lock-keywords))
1971 (remove-hook 'before-change-functions 'compilation--flush-parse t)
1972 (kill-local-variable 'compilation--parsed)
1973 (compilation--remove-properties)
1974 (if font-lock-mode
1975 (font-lock-fontify-buffer)))
1977 ;;;###autoload
1978 (define-minor-mode compilation-shell-minor-mode
1979 "Toggle Compilation Shell minor mode.
1980 With a prefix argument ARG, enable Compilation Shell minor mode
1981 if ARG is positive, and disable it otherwise. If called from
1982 Lisp, enable the mode if ARG is omitted or nil.
1984 When Compilation Shell minor mode is enabled, all the
1985 error-parsing commands of the Compilation major mode are
1986 available but bound to keys that don't collide with Shell mode.
1987 See `compilation-mode'."
1988 nil " Shell-Compile"
1989 :group 'compilation
1990 (if compilation-shell-minor-mode
1991 (compilation-setup t)
1992 (compilation--unsetup)))
1994 ;;;###autoload
1995 (define-minor-mode compilation-minor-mode
1996 "Toggle Compilation minor mode.
1997 With a prefix argument ARG, enable Compilation minor mode if ARG
1998 is positive, and disable it otherwise. If called from Lisp,
1999 enable the mode if ARG is omitted or nil.
2001 When Compilation minor mode is enabled, all the error-parsing
2002 commands of Compilation major mode are available. See
2003 `compilation-mode'."
2004 nil " Compilation"
2005 :group 'compilation
2006 (if compilation-minor-mode
2007 (compilation-setup t)
2008 (compilation--unsetup)))
2010 (defun compilation-handle-exit (process-status exit-status msg)
2011 "Write MSG in the current buffer and hack its `mode-line-process'."
2012 (let ((inhibit-read-only t)
2013 (status (if compilation-exit-message-function
2014 (funcall compilation-exit-message-function
2015 process-status exit-status msg)
2016 (cons msg exit-status)))
2017 (omax (point-max))
2018 (opoint (point))
2019 (cur-buffer (current-buffer)))
2020 ;; Record where we put the message, so we can ignore it later on.
2021 (goto-char omax)
2022 (insert ?\n mode-name " " (car status))
2023 (if (and (numberp compilation-window-height)
2024 (zerop compilation-window-height))
2025 (message "%s" (cdr status)))
2026 (if (bolp)
2027 (forward-char -1))
2028 (insert " at " (substring (current-time-string) 0 19))
2029 (goto-char (point-max))
2030 ;; Prevent that message from being recognized as a compilation error.
2031 (add-text-properties omax (point)
2032 (append '(compilation-handle-exit t) nil))
2033 (setq mode-line-process
2034 (let ((out-string (format ":%s [%s]" process-status (cdr status)))
2035 (msg (format "%s %s" mode-name
2036 (replace-regexp-in-string "\n?$" ""
2037 (car status)))))
2038 (message "%s" msg)
2039 (propertize out-string
2040 'help-echo msg 'face (if (> exit-status 0)
2041 'compilation-error
2042 'compilation-info))))
2043 ;; Force mode line redisplay soon.
2044 (force-mode-line-update)
2045 (if (and opoint (< opoint omax))
2046 (goto-char opoint))
2047 (with-no-warnings
2048 (if compilation-finish-function
2049 (funcall compilation-finish-function cur-buffer msg)))
2050 (run-hook-with-args 'compilation-finish-functions cur-buffer msg)))
2052 ;; Called when compilation process changes state.
2053 (defun compilation-sentinel (proc msg)
2054 "Sentinel for compilation buffers."
2055 (if (memq (process-status proc) '(exit signal))
2056 (let ((buffer (process-buffer proc)))
2057 (if (null (buffer-name buffer))
2058 ;; buffer killed
2059 (set-process-buffer proc nil)
2060 (with-current-buffer buffer
2061 ;; Write something in the compilation buffer
2062 ;; and hack its mode line.
2063 (compilation-handle-exit (process-status proc)
2064 (process-exit-status proc)
2065 msg)
2066 ;; Since the buffer and mode line will show that the
2067 ;; process is dead, we can delete it now. Otherwise it
2068 ;; will stay around until M-x list-processes.
2069 (delete-process proc)))
2070 (setq compilation-in-progress (delq proc compilation-in-progress)))))
2072 (defun compilation-filter (proc string)
2073 "Process filter for compilation buffers.
2074 Just inserts the text,
2075 handles carriage motion (see `comint-inhibit-carriage-motion'),
2076 and runs `compilation-filter-hook'."
2077 (when (buffer-live-p (process-buffer proc))
2078 (with-current-buffer (process-buffer proc)
2079 (let ((inhibit-read-only t)
2080 ;; `save-excursion' doesn't use the right insertion-type for us.
2081 (pos (copy-marker (point) t))
2082 ;; `save-restriction' doesn't use the right insertion type either:
2083 ;; If we are inserting at the end of the accessible part of the
2084 ;; buffer, keep the inserted text visible.
2085 (min (point-min-marker))
2086 (max (copy-marker (point-max) t))
2087 (compilation-filter-start (marker-position (process-mark proc))))
2088 (unwind-protect
2089 (progn
2090 (widen)
2091 (goto-char compilation-filter-start)
2092 ;; We used to use `insert-before-markers', so that windows with
2093 ;; point at `process-mark' scroll along with the output, but we
2094 ;; now use window-point-insertion-type instead.
2095 (insert string)
2096 (unless comint-inhibit-carriage-motion
2097 (comint-carriage-motion (process-mark proc) (point)))
2098 (set-marker (process-mark proc) (point))
2099 ;; (set (make-local-variable 'compilation-buffer-modtime)
2100 ;; (current-time))
2101 (run-hooks 'compilation-filter-hook))
2102 (goto-char pos)
2103 (narrow-to-region min max)
2104 (set-marker pos nil)
2105 (set-marker min nil)
2106 (set-marker max nil))))))
2108 ;;; test if a buffer is a compilation buffer, assuming we're in the buffer
2109 (defsubst compilation-buffer-internal-p ()
2110 "Test if inside a compilation buffer."
2111 (local-variable-p 'compilation-locs))
2113 ;;; test if a buffer is a compilation buffer, using compilation-buffer-internal-p
2114 (defsubst compilation-buffer-p (buffer)
2115 "Test if BUFFER is a compilation buffer."
2116 (with-current-buffer buffer
2117 (compilation-buffer-internal-p)))
2119 (defmacro compilation-loop (< property-change 1+ error limit)
2120 `(let (opt)
2121 (while (,< n 0)
2122 (setq opt pt)
2123 (or (setq pt (,property-change pt 'compilation-message))
2124 ;; Handle the case where where the first error message is
2125 ;; at the start of the buffer, and n < 0.
2126 (if (or (eq (get-text-property ,limit 'compilation-message)
2127 (get-text-property opt 'compilation-message))
2128 (eq pt opt))
2129 (error ,error compilation-error)
2130 (setq pt ,limit)))
2131 ;; prop 'compilation-message usually has 2 changes, on and off, so
2132 ;; re-search if off
2133 (or (setq msg (get-text-property pt 'compilation-message))
2134 (if (setq pt (,property-change pt 'compilation-message nil ,limit))
2135 (setq msg (get-text-property pt 'compilation-message)))
2136 (error ,error compilation-error))
2137 (or (< (compilation--message->type msg) compilation-skip-threshold)
2138 (if different-file
2139 (eq (prog1 last
2140 (setq last (compilation--loc->file-struct
2141 (compilation--message->loc msg))))
2142 last))
2143 (if compilation-skip-visited
2144 (compilation--loc->visited (compilation--message->loc msg)))
2145 (if compilation-skip-to-next-location
2146 (eq (compilation--message->loc msg) loc))
2147 ;; count this message only if none of the above are true
2148 (setq n (,1+ n))))))
2150 (defun compilation-next-single-property-change (position prop
2151 &optional object limit)
2152 (let (parsed res)
2153 (while (progn
2154 ;; We parse the buffer here "on-demand" by chunks of 500 chars.
2155 ;; But we could also just parse the whole buffer.
2156 (compilation--ensure-parse
2157 (setq parsed (max compilation--parsed
2158 (min (+ position 500)
2159 (or limit (point-max))))))
2160 (and (or (not (setq res (next-single-property-change
2161 position prop object limit)))
2162 (eq res limit))
2163 (< position (or limit (point-max)))))
2164 (setq position parsed))
2165 res))
2167 (defun compilation-next-error (n &optional different-file pt)
2168 "Move point to the next error in the compilation buffer.
2169 This function does NOT find the source line like \\[next-error].
2170 Prefix arg N says how many error messages to move forwards (or
2171 backwards, if negative).
2172 Optional arg DIFFERENT-FILE, if non-nil, means find next error for a
2173 file that is different from the current one.
2174 Optional arg PT, if non-nil, specifies the value of point to start
2175 looking for the next message."
2176 (interactive "p")
2177 (or (compilation-buffer-p (current-buffer))
2178 (error "Not in a compilation buffer"))
2179 (or pt (setq pt (point)))
2180 (let* ((msg (get-text-property pt 'compilation-message))
2181 ;; `loc', `msg', and `last' are used by the compilation-loop macro.
2182 (loc (and msg (compilation--message->loc msg)))
2183 last)
2184 (if (zerop n)
2185 (unless (or msg ; find message near here
2186 (setq msg (get-text-property (max (1- pt) (point-min))
2187 'compilation-message)))
2188 (setq pt (previous-single-property-change pt 'compilation-message nil
2189 (line-beginning-position)))
2190 (unless (setq msg (get-text-property (max (1- pt) (point-min))
2191 'compilation-message))
2192 (setq pt (next-single-property-change pt 'compilation-message nil
2193 (line-end-position)))
2194 (or (setq msg (get-text-property pt 'compilation-message))
2195 (setq pt (point)))))
2196 (setq last (compilation--loc->file-struct loc))
2197 (if (>= n 0)
2198 (compilation-loop > compilation-next-single-property-change 1-
2199 (if (get-buffer-process (current-buffer))
2200 "No more %ss yet"
2201 "Moved past last %s")
2202 (point-max))
2203 (compilation--ensure-parse pt)
2204 ;; Don't move "back" to message at or before point.
2205 ;; Pass an explicit (point-min) to make sure pt is non-nil.
2206 (setq pt (previous-single-property-change
2207 pt 'compilation-message nil (point-min)))
2208 (compilation-loop < previous-single-property-change 1+
2209 "Moved back before first %s" (point-min))))
2210 (goto-char pt)
2211 (or msg
2212 (error "No %s here" compilation-error))))
2214 (defun compilation-previous-error (n)
2215 "Move point to the previous error in the compilation buffer.
2216 Prefix arg N says how many error messages to move backwards (or
2217 forwards, if negative).
2218 Does NOT find the source line like \\[previous-error]."
2219 (interactive "p")
2220 (compilation-next-error (- n)))
2222 (defun compilation-next-file (n)
2223 "Move point to the next error for a different file than the current one.
2224 Prefix arg N says how many files to move forwards (or backwards, if negative)."
2225 (interactive "p")
2226 (compilation-next-error n t))
2228 (defun compilation-previous-file (n)
2229 "Move point to the previous error for a different file than the current one.
2230 Prefix arg N says how many files to move backwards (or forwards, if negative)."
2231 (interactive "p")
2232 (compilation-next-file (- n)))
2234 (defun kill-compilation ()
2235 "Kill the process made by the \\[compile] or \\[grep] commands."
2236 (interactive)
2237 (let ((buffer (compilation-find-buffer)))
2238 (if (get-buffer-process buffer)
2239 (interrupt-process (get-buffer-process buffer))
2240 (error "The %s process is not running" (downcase mode-name)))))
2242 (defalias 'compile-mouse-goto-error 'compile-goto-error)
2244 (defun compile-goto-error (&optional event)
2245 "Visit the source for the error message at point.
2246 Use this command in a compilation log buffer. Sets the mark at point there."
2247 (interactive (list last-input-event))
2248 (if event (posn-set-point (event-end event)))
2249 (or (compilation-buffer-p (current-buffer))
2250 (error "Not in a compilation buffer"))
2251 (compilation--ensure-parse (point))
2252 (if (get-text-property (point) 'compilation-directory)
2253 (dired-other-window
2254 (car (get-text-property (point) 'compilation-directory)))
2255 (push-mark)
2256 (setq compilation-current-error (point))
2257 (next-error-internal)))
2259 ;; This is mostly unused, but we keep it for the sake of some external
2260 ;; packages which seem to make use of it.
2261 (defun compilation-find-buffer (&optional avoid-current)
2262 "Return a compilation buffer.
2263 If AVOID-CURRENT is nil, and the current buffer is a compilation buffer,
2264 return it. If AVOID-CURRENT is non-nil, return the current buffer only
2265 as a last resort."
2266 (if (and (compilation-buffer-internal-p) (not avoid-current))
2267 (current-buffer)
2268 (next-error-find-buffer avoid-current 'compilation-buffer-internal-p)))
2270 ;;;###autoload
2271 (defun compilation-next-error-function (n &optional reset)
2272 "Advance to the next error message and visit the file where the error was.
2273 This is the value of `next-error-function' in Compilation buffers."
2274 (interactive "p")
2275 (when reset
2276 (setq compilation-current-error nil))
2277 (let* ((screen-columns compilation-error-screen-columns)
2278 (first-column compilation-first-column)
2279 (last 1)
2280 (msg (compilation-next-error (or n 1) nil
2281 (or compilation-current-error
2282 compilation-messages-start
2283 (point-min))))
2284 (loc (compilation--message->loc msg))
2285 (end-loc (compilation--message->end-loc msg))
2286 (marker (point-marker)))
2287 (setq compilation-current-error (point-marker)
2288 overlay-arrow-position
2289 (if (bolp)
2290 compilation-current-error
2291 (copy-marker (line-beginning-position))))
2292 ;; If loc contains no marker, no error in that file has been visited.
2293 ;; If the marker is invalid the buffer has been killed.
2294 ;; So, recalculate all markers for that file.
2295 (unless (and (compilation--loc->marker loc)
2296 (marker-buffer (compilation--loc->marker loc))
2297 ;; FIXME-omake: For "omake -P", which automatically recompiles
2298 ;; when the file is modified, the line numbers of new output
2299 ;; may not be related to line numbers from earlier output
2300 ;; (earlier markers), so we used to try to detect it here and
2301 ;; force a reparse. But that caused more problems elsewhere,
2302 ;; so instead we now flush the file-structure when we see
2303 ;; omake's message telling it's about to recompile a file.
2304 ;; (or (null (compilation--loc->timestamp loc)) ;A fake-loc
2305 ;; (equal (compilation--loc->timestamp loc)
2306 ;; (setq timestamp compilation-buffer-modtime)))
2308 (with-current-buffer
2309 (compilation-find-file
2310 marker
2311 (caar (compilation--loc->file-struct loc))
2312 (cadr (car (compilation--loc->file-struct loc))))
2313 (let ((screen-columns
2314 ;; Obey the compilation-error-screen-columns of the target
2315 ;; buffer if its major mode set it buffer-locally.
2316 (if (local-variable-p 'compilation-error-screen-columns)
2317 compilation-error-screen-columns screen-columns))
2318 (compilation-first-column
2319 (if (local-variable-p 'compilation-first-column)
2320 compilation-first-column first-column)))
2321 (save-restriction
2322 (widen)
2323 (goto-char (point-min))
2324 ;; Treat file's found lines in forward order, 1 by 1.
2325 (dolist (line (reverse (cddr (compilation--loc->file-struct loc))))
2326 (when (car line) ; else this is a filename w/o a line#
2327 (beginning-of-line (- (car line) last -1))
2328 (setq last (car line)))
2329 ;; Treat line's found columns and store/update a marker for each.
2330 (dolist (col (cdr line))
2331 (if (compilation--loc->col col)
2332 (if (eq (compilation--loc->col col) -1)
2333 ;; Special case for range end.
2334 (end-of-line)
2335 (compilation-move-to-column (compilation--loc->col col)
2336 screen-columns))
2337 (beginning-of-line)
2338 (skip-chars-forward " \t"))
2339 (if (compilation--loc->marker col)
2340 (set-marker (compilation--loc->marker col) (point))
2341 (setf (compilation--loc->marker col) (point-marker)))
2342 ;; (setf (compilation--loc->timestamp col) timestamp)
2343 ))))))
2344 (compilation-goto-locus marker (compilation--loc->marker loc)
2345 (compilation--loc->marker end-loc))
2346 (setf (compilation--loc->visited loc) t)))
2348 (defvar compilation-gcpro nil
2349 "Internal variable used to keep some values from being GC'd.")
2350 (make-variable-buffer-local 'compilation-gcpro)
2352 (defun compilation-fake-loc (marker file &optional line col)
2353 "Preassociate MARKER with FILE.
2354 FILE should be ABSOLUTE-FILENAME or (RELATIVE-FILENAME . DIRNAME).
2355 This is useful when you compile temporary files, but want
2356 automatic translation of the messages to the real buffer from
2357 which the temporary file came. This may also affect previous messages
2358 about FILE.
2360 Optional args LINE and COL default to 1 and beginning of
2361 indentation respectively. The marker is expected to reflect
2362 this. In the simplest case the marker points to the first line
2363 of the region that was saved to the temp file.
2365 If you concatenate several regions into the temp file (e.g. a
2366 header with variable assignments and a code region), you must
2367 call this several times, once each for the last line of one
2368 region and the first line of the next region."
2369 (or (consp file) (setq file (list file)))
2370 (compilation--flush-file-structure file)
2371 (let ((fs (compilation-get-file-structure file)))
2372 ;; Between the current call to compilation-fake-loc and the first
2373 ;; occurrence of an error message referring to `file', the data is
2374 ;; only kept in the weak hash-table compilation-locs, so we need
2375 ;; to prevent this entry in compilation-locs from being GC'd
2376 ;; away. --Stef
2377 (push fs compilation-gcpro)
2378 (let ((loc (compilation-assq (or line 1) (cdr fs))))
2379 (setq loc (compilation-assq col loc))
2380 (assert (null (cdr loc)))
2381 (setcdr loc (compilation--make-cdrloc line fs marker))
2382 loc)))
2384 (defcustom compilation-context-lines nil
2385 "Display this many lines of leading context before the current message.
2386 If nil and the left fringe is displayed, don't scroll the
2387 compilation output window; an arrow in the left fringe points to
2388 the current message. If nil and there is no left fringe, the message
2389 displays at the top of the window; there is no arrow."
2390 :type '(choice integer (const :tag "No window scrolling" nil))
2391 :group 'compilation
2392 :version "22.1")
2394 (defsubst compilation-set-window (w mk)
2395 "Align the compilation output window W with marker MK near top."
2396 (if (integerp compilation-context-lines)
2397 (set-window-start w (save-excursion
2398 (goto-char mk)
2399 (beginning-of-line
2400 (- 1 compilation-context-lines))
2401 (point)))
2402 ;; If there is no left fringe.
2403 (if (equal (car (window-fringes)) 0)
2404 (set-window-start w (save-excursion
2405 (goto-char mk)
2406 (beginning-of-line 1)
2407 (point)))))
2408 (set-window-point w mk))
2410 (defvar next-error-highlight-timer)
2412 (defun compilation-goto-locus (msg mk end-mk)
2413 "Jump to an error corresponding to MSG at MK.
2414 All arguments are markers. If END-MK is non-nil, mark is set there
2415 and overlay is highlighted between MK and END-MK."
2416 ;; Show compilation buffer in other window, scrolled to this error.
2417 (let* ((from-compilation-buffer (eq (window-buffer (selected-window))
2418 (marker-buffer msg)))
2419 ;; Use an existing window if it is in a visible frame.
2420 (pre-existing (get-buffer-window (marker-buffer msg) 0))
2421 (w (if (and from-compilation-buffer pre-existing)
2422 ;; Calling display-buffer here may end up (partly) hiding
2423 ;; the error location if the two buffers are in two
2424 ;; different frames. So don't do it if it's not necessary.
2425 pre-existing
2426 (let ((display-buffer-reuse-frames t)
2427 (pop-up-windows t))
2428 ;; Pop up a window.
2429 (display-buffer (marker-buffer msg)))))
2430 (highlight-regexp (with-current-buffer (marker-buffer msg)
2431 ;; also do this while we change buffer
2432 (compilation-set-window w msg)
2433 compilation-highlight-regexp)))
2434 ;; Ideally, the window-size should be passed to `display-buffer'
2435 ;; so it's only used when creating a new window.
2436 (unless pre-existing (compilation-set-window-height w))
2438 (if from-compilation-buffer
2439 ;; If the compilation buffer window was selected,
2440 ;; keep the compilation buffer in this window;
2441 ;; display the source in another window.
2442 (let ((pop-up-windows t))
2443 (pop-to-buffer (marker-buffer mk) 'other-window))
2444 (switch-to-buffer (marker-buffer mk)))
2445 (unless (eq (goto-char mk) (point))
2446 ;; If narrowing gets in the way of going to the right place, widen.
2447 (widen)
2448 (if next-error-move-function
2449 (funcall next-error-move-function msg mk)
2450 (goto-char mk)))
2451 (if end-mk
2452 (push-mark end-mk t)
2453 (if mark-active (setq mark-active)))
2454 ;; If hideshow got in the way of
2455 ;; seeing the right place, open permanently.
2456 (dolist (ov (overlays-at (point)))
2457 (when (eq 'hs (overlay-get ov 'invisible))
2458 (delete-overlay ov)
2459 (goto-char mk)))
2461 (when highlight-regexp
2462 (if (timerp next-error-highlight-timer)
2463 (cancel-timer next-error-highlight-timer))
2464 (unless compilation-highlight-overlay
2465 (setq compilation-highlight-overlay
2466 (make-overlay (point-min) (point-min)))
2467 (overlay-put compilation-highlight-overlay 'face 'next-error))
2468 (with-current-buffer (marker-buffer mk)
2469 (save-excursion
2470 (if end-mk (goto-char end-mk) (end-of-line))
2471 (let ((end (point)))
2472 (if mk (goto-char mk) (beginning-of-line))
2473 (if (and (stringp highlight-regexp)
2474 (re-search-forward highlight-regexp end t))
2475 (progn
2476 (goto-char (match-beginning 0))
2477 (move-overlay compilation-highlight-overlay
2478 (match-beginning 0) (match-end 0)
2479 (current-buffer)))
2480 (move-overlay compilation-highlight-overlay
2481 (point) end (current-buffer)))
2482 (if (or (eq next-error-highlight t)
2483 (numberp next-error-highlight))
2484 ;; We want highlighting: delete overlay on next input.
2485 (add-hook 'pre-command-hook
2486 'compilation-goto-locus-delete-o)
2487 ;; We don't want highlighting: delete overlay now.
2488 (delete-overlay compilation-highlight-overlay))
2489 ;; We want highlighting for a limited time:
2490 ;; set up a timer to delete it.
2491 (when (numberp next-error-highlight)
2492 (setq next-error-highlight-timer
2493 (run-at-time next-error-highlight nil
2494 'compilation-goto-locus-delete-o)))))))
2495 (when (and (eq next-error-highlight 'fringe-arrow))
2496 ;; We want a fringe arrow (instead of highlighting).
2497 (setq next-error-overlay-arrow-position
2498 (copy-marker (line-beginning-position))))))
2500 (defun compilation-goto-locus-delete-o ()
2501 (delete-overlay compilation-highlight-overlay)
2502 ;; Get rid of timer and hook that would try to do this again.
2503 (if (timerp next-error-highlight-timer)
2504 (cancel-timer next-error-highlight-timer))
2505 (remove-hook 'pre-command-hook
2506 'compilation-goto-locus-delete-o))
2508 (defun compilation-find-file (marker filename directory &rest formats)
2509 "Find a buffer for file FILENAME.
2510 If FILENAME is not found at all, ask the user where to find it.
2511 Pop up the buffer containing MARKER and scroll to MARKER if we ask
2512 the user where to find the file.
2513 Search the directories in `compilation-search-path'.
2514 A nil in `compilation-search-path' means to try the
2515 \"current\" directory, which is passed in DIRECTORY.
2516 If DIRECTORY is relative, it is combined with `default-directory'.
2517 If DIRECTORY is nil, that means use `default-directory'.
2518 FORMATS, if given, is a list of formats to reformat FILENAME when
2519 looking for it: for each element FMT in FORMATS, this function
2520 attempts to find a file whose name is produced by (format FMT FILENAME)."
2521 (or formats (setq formats '("%s")))
2522 (let ((dirs compilation-search-path)
2523 (spec-dir (if directory
2524 (expand-file-name directory)
2525 default-directory))
2526 buffer thisdir fmts name)
2527 (if (file-name-absolute-p filename)
2528 ;; The file name is absolute. Use its explicit directory as
2529 ;; the first in the search path, and strip it from FILENAME.
2530 (setq filename (abbreviate-file-name (expand-file-name filename))
2531 dirs (cons (file-name-directory filename) dirs)
2532 filename (file-name-nondirectory filename)))
2533 ;; Now search the path.
2534 (while (and dirs (null buffer))
2535 (setq thisdir (or (car dirs) spec-dir)
2536 fmts formats)
2537 ;; For each directory, try each format string.
2538 (while (and fmts (null buffer))
2539 (setq name (expand-file-name (format (car fmts) filename) thisdir)
2540 buffer (and (file-exists-p name)
2541 (find-file-noselect name))
2542 fmts (cdr fmts)))
2543 (setq dirs (cdr dirs)))
2544 (while (null buffer) ;Repeat until the user selects an existing file.
2545 ;; The file doesn't exist. Ask the user where to find it.
2546 (save-excursion ;This save-excursion is probably not right.
2547 (let ((pop-up-windows t))
2548 (compilation-set-window (display-buffer (marker-buffer marker))
2549 marker)
2550 (let* ((name (read-file-name
2551 (format "Find this %s in (default %s): "
2552 compilation-error filename)
2553 spec-dir filename t nil
2554 ;; The predicate below is fine when called from
2555 ;; minibuffer-complete-and-exit, but it's too
2556 ;; restrictive otherwise, since it also prevents the
2557 ;; user from completing "fo" to "foo/" when she
2558 ;; wants to enter "foo/bar".
2560 ;; Try to make sure the user can only select
2561 ;; a valid answer. This predicate may be ignored,
2562 ;; tho, so we still have to double-check afterwards.
2563 ;; TODO: We should probably fix read-file-name so
2564 ;; that it never ignores this predicate, even when
2565 ;; using popup dialog boxes.
2566 ;; (lambda (name)
2567 ;; (if (file-directory-p name)
2568 ;; (setq name (expand-file-name filename name)))
2569 ;; (file-exists-p name))
2571 (origname name))
2572 (cond
2573 ((not (file-exists-p name))
2574 (message "Cannot find file `%s'" name)
2575 (ding) (sit-for 2))
2576 ((and (file-directory-p name)
2577 (not (file-exists-p
2578 (setq name (expand-file-name filename name)))))
2579 (message "No `%s' in directory %s" filename origname)
2580 (ding) (sit-for 2))
2582 (setq buffer (find-file-noselect name))))))))
2583 ;; Make intangible overlays tangible.
2584 ;; This is weird: it's not even clear which is the current buffer,
2585 ;; so the code below can't be expected to DTRT here. -- Stef
2586 (dolist (ov (overlays-in (point-min) (point-max)))
2587 (when (overlay-get ov 'intangible)
2588 (overlay-put ov 'intangible nil)))
2589 buffer))
2591 (defun compilation-get-file-structure (file &optional fmt)
2592 "Retrieve FILE's file-structure or create a new one.
2593 FILE should be (FILENAME) or (RELATIVE-FILENAME . DIRNAME).
2594 In the former case, FILENAME may be relative or absolute.
2596 The file-structure looks like this:
2597 ((FILENAME [DIR-FROM-PREV-MSG]) FMT LINE-STRUCT...)"
2598 (or (gethash file compilation-locs)
2599 ;; File was not previously encountered, at least not in the form passed.
2600 ;; Let's normalize it and look again.
2601 (let ((filename (car file))
2602 ;; Get the specified directory from FILE.
2603 (spec-directory (if (cdr file)
2604 (file-truename (cdr file)))))
2606 ;; Check for a comint-file-name-prefix and prepend it if appropriate.
2607 ;; (This is very useful for compilation-minor-mode in an rlogin-mode
2608 ;; buffer.)
2609 (when (and (boundp 'comint-file-name-prefix)
2610 (not (equal comint-file-name-prefix "")))
2611 (if (file-name-absolute-p filename)
2612 (setq filename
2613 (concat comint-file-name-prefix filename))
2614 (if spec-directory
2615 (setq spec-directory
2616 (file-truename
2617 (concat comint-file-name-prefix spec-directory))))))
2619 ;; If compilation-parse-errors-filename-function is
2620 ;; defined, use it to process the filename.
2621 (when compilation-parse-errors-filename-function
2622 (setq filename
2623 (funcall compilation-parse-errors-filename-function
2624 filename)))
2626 ;; Some compilers (e.g. Sun's java compiler, reportedly) produce bogus
2627 ;; file names like "./bar//foo.c" for file "bar/foo.c";
2628 ;; expand-file-name will collapse these into "/foo.c" and fail to find
2629 ;; the appropriate file. So we look for doubled slashes in the file
2630 ;; name and fix them.
2631 (setq filename (command-line-normalize-file-name filename))
2633 ;; Store it for the possibly unnormalized name
2634 (puthash file
2635 ;; Retrieve or create file-structure for normalized name
2636 ;; The gethash used to not use spec-directory, but
2637 ;; this leads to errors when files in different
2638 ;; directories have the same name:
2639 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg00463.html
2640 (or (gethash (cons filename spec-directory) compilation-locs)
2641 (puthash (cons filename spec-directory)
2642 (compilation--make-file-struct
2643 (list filename spec-directory) fmt)
2644 compilation-locs))
2645 compilation-locs))))
2647 (defun compilation--flush-file-structure (file)
2648 (or (consp file) (setq file (list file)))
2649 (let ((fs (compilation-get-file-structure file)))
2650 (assert (eq fs (gethash file compilation-locs)))
2651 (assert (eq fs (gethash (cons (caar fs) (cadr (car fs)))
2652 compilation-locs)))
2653 (maphash (lambda (k v)
2654 (if (eq v fs) (remhash k compilation-locs)))
2655 compilation-locs)))
2657 (add-to-list 'debug-ignored-errors "\\`No more [-a-z ]+s yet\\'")
2658 (add-to-list 'debug-ignored-errors "\\`Moved past last .*")
2660 ;;; Compatibility with the old compile.el.
2662 (defvaralias 'compilation-last-buffer 'next-error-last-buffer)
2663 (defvar compilation-parsing-end (make-marker))
2664 (defvar compilation-error-list nil)
2665 (defvar compilation-old-error-list nil)
2667 (defun compilation--compat-error-properties (err)
2668 "Map old-style error ERR to new-style message."
2669 ;; Old-style structure is (MARKER (FILE DIR) LINE COL) or
2670 ;; (MARKER . MARKER).
2671 (let ((dst (cdr err)))
2672 (if (markerp dst)
2673 `(compilation-message ,(compilation--make-message
2674 (cons nil (compilation--make-cdrloc
2675 nil nil dst))
2676 2 nil)
2677 help-echo "mouse-2: visit the source location"
2678 keymap compilation-button-map
2679 mouse-face highlight)
2680 ;; Too difficult to do it by hand: dispatch to the normal code.
2681 (let* ((file (pop dst))
2682 (line (pop dst))
2683 (col (pop dst))
2684 (filename (pop file))
2685 (dirname (pop file))
2686 (fmt (pop file)))
2687 (compilation-internal-error-properties
2688 (cons filename dirname) line nil col nil 2 fmt)))))
2690 (defun compilation--compat-parse-errors (limit)
2691 (when compilation-parse-errors-function
2692 ;; FIXME: We should remove the rest of the compilation keywords
2693 ;; but we can't do that from here because font-lock is using
2694 ;; the value right now. --Stef
2695 (save-excursion
2696 (setq compilation-error-list nil)
2697 ;; Reset compilation-parsing-end each time because font-lock
2698 ;; might force us the re-parse many times (typically because
2699 ;; some code adds some text-property to the output that we
2700 ;; already parsed). You might say "why reparse", well:
2701 ;; because font-lock has just removed the `compilation-message' property
2702 ;; so have to do it all over again.
2703 (if compilation-parsing-end
2704 (set-marker compilation-parsing-end (point))
2705 (setq compilation-parsing-end (point-marker)))
2706 (condition-case nil
2707 ;; Ignore any error: we're calling this function earlier than
2708 ;; in the old compile.el so things might not all be setup yet.
2709 (funcall compilation-parse-errors-function limit nil)
2710 (error nil))
2711 (dolist (err (if (listp compilation-error-list) compilation-error-list))
2712 (let* ((src (car err))
2713 (dst (cdr err))
2714 (loc (cond ((markerp dst)
2715 (cons nil
2716 (compilation--make-cdrloc nil nil dst)))
2717 ((consp dst)
2718 (cons (nth 2 dst)
2719 (compilation--make-cdrloc
2720 (nth 1 dst)
2721 (cons (cdar dst) (caar dst))
2722 nil))))))
2723 (when loc
2724 (goto-char src)
2725 ;; (put-text-property src (line-end-position)
2726 ;; 'font-lock-face 'font-lock-warning-face)
2727 (put-text-property src (line-end-position)
2728 'compilation-message
2729 (compilation--make-message loc 2 nil)))))))
2730 (goto-char limit)
2731 nil)
2733 ;; Beware! this is not only compatibility code. New code also uses it. --Stef
2734 (defun compilation-forget-errors ()
2735 ;; In case we hit the same file/line specs, we want to recompute a new
2736 ;; marker for them, so flush our cache.
2737 (clrhash compilation-locs)
2738 (setq compilation-gcpro nil)
2739 ;; FIXME: the old code reset the directory-stack, so maybe we should
2740 ;; put a `directory change' marker of some sort, but where? -stef
2742 ;; FIXME: The old code moved compilation-current-error (which was
2743 ;; virtually represented by a mix of compilation-parsing-end and
2744 ;; compilation-error-list) to point-min, but that was only meaningful for
2745 ;; the internal uses of compilation-forget-errors: all calls from external
2746 ;; packages seem to be followed by a move of compilation-parsing-end to
2747 ;; something equivalent to point-max. So we heuristically move
2748 ;; compilation-current-error to point-max (since the external package
2749 ;; won't know that it should do it). --Stef
2750 (setq compilation-current-error nil)
2751 (let* ((proc (get-buffer-process (current-buffer)))
2752 (mark (if proc (process-mark proc)))
2753 (pos (or mark (point-max))))
2754 (setq compilation-messages-start
2755 ;; In the future, ignore the text already present in the buffer.
2756 ;; Since many process filter functions insert before markers,
2757 ;; we need to put ours just before the insertion point rather
2758 ;; than at the insertion point. If that's not possible, then
2759 ;; don't use a marker. --Stef
2760 (if (> pos (point-min)) (copy-marker (1- pos)) pos)))
2761 ;; Again, since this command is used in buffers that contain several
2762 ;; compilations, to set the beginning of "this compilation", it's a good
2763 ;; place to reset compilation-auto-jump-to-next.
2764 (set (make-local-variable 'compilation-auto-jump-to-next)
2765 (or compilation-auto-jump-to-first-error
2766 (eq compilation-scroll-output 'first-error))))
2768 (provide 'compile)
2770 ;;; compile.el ends here