Mercurial > emacs
annotate lisp/progmodes/compile.el @ 1723:4023bea27d64
(etags-verify-tags-table): Use eq instead of = in case char-after returns
nil.
author | Roland McGrath <roland@gnu.org> |
---|---|
date | Thu, 24 Dec 1992 22:33:11 +0000 |
parents | 817bd71e0e72 |
children | d1a56482a2af |
rev | line source |
---|---|
727 | 1 ;;; compile.el --- run compiler as inferior of Emacs, parse error messages. |
712
16823e891d56
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1985, 86, 87, 92 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
804 | 5 ;; Author: Roland McGrath <roland@prep.ai.mit.edu> |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
6 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
804
diff
changeset
|
7 ;; Keyword: tools, processes |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
8 |
71 | 9 ;; This file is part of GNU Emacs. |
10 | |
804 | 11 ;; GNU Emacs is free software; you can redistribute it and/or modify |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
71 | 15 |
804 | 16 ;; GNU Emacs is distributed in the hope that it will be useful, |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
71 | 24 |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
25 ;;; Code: |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
26 |
569 | 27 ;;;###autoload |
28 (defvar compilation-mode-hook nil | |
29 "*List of hook functions run by compilation-mode (see `run-hooks').") | |
30 | |
31 ;;;###autoload | |
418 | 32 (defconst compilation-window-height nil |
33 "*Number of lines in a compilation window. If nil, use Emacs default.") | |
34 | |
71 | 35 (defvar compilation-error-list nil |
36 "List of error message descriptors for visiting erring functions. | |
894 | 37 Each error descriptor is a cons (or nil). Its car is a marker pointing to |
38 an error message. If its cdr is a marker, it points to the text of the | |
39 line the message is about. If its cdr is a cons, that cons's car is a cons | |
40 \(DIRECTORY . FILE\), specifying the file the message is about, and its cdr | |
41 is the number of the line the message is about. Or its cdr may be nil if | |
42 that error is not interesting. | |
418 | 43 |
44 The value may be t instead of a list; this means that the buffer of | |
45 error messages should be reparsed the next time the list of errors is wanted.") | |
71 | 46 |
47 (defvar compilation-old-error-list nil | |
48 "Value of `compilation-error-list' after errors were parsed.") | |
49 | |
418 | 50 (defvar compilation-parse-errors-function 'compilation-parse-errors |
885 | 51 "Function to call to parse error messages from a compilation. |
907 | 52 It takes args LIMIT-SEARCH and FIND-AT-LEAST. |
53 If LIMIT-SEARCH is non-nil, don't bother parsing past that location. | |
54 If FIND-AT-LEAST is non-nil, don't bother parsing after finding that | |
55 many new erros. | |
418 | 56 It should read in the source files which have errors and set |
57 `compilation-error-list' to a list with an element for each error message | |
58 found. See that variable for more info.") | |
71 | 59 |
474 | 60 ;;;###autoload |
418 | 61 (defvar compilation-buffer-name-function nil |
1133 | 62 "Function to compute the name of a compilation buffer. |
63 The function receives one argument, the name of the major mode of the | |
64 compilation buffer. It should return a string. | |
65 nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.") | |
71 | 66 |
474 | 67 ;;;###autoload |
418 | 68 (defvar compilation-finish-function nil |
474 | 69 "*Function to call when a compilation process finishes. |
418 | 70 It is called with two arguments: the compilation buffer, and a string |
71 describing how the process finished.") | |
72 | |
73 (defvar compilation-last-buffer nil | |
1133 | 74 "The most recent compilation buffer. |
75 A buffer becomes most recent when its compilation is started | |
76 or when it is used with \\[next-error] or \\[compile-goto-error].") | |
71 | 77 |
740 | 78 (defvar compilation-in-progress nil |
79 "List of compilation processes now running.") | |
80 (or (assq 'compilation-in-progress minor-mode-alist) | |
81 (setq minor-mode-alist (cons '(compilation-in-progress " Compiling") | |
82 minor-mode-alist))) | |
83 | |
71 | 84 (defvar compilation-parsing-end nil |
418 | 85 "Position of end of buffer when last error messages were parsed.") |
71 | 86 |
418 | 87 (defvar compilation-error-message "No more errors" |
1133 | 88 "Message to print when no more matches are found.") |
89 | |
90 (defvar compilation-num-errors-found) | |
71 | 91 |
418 | 92 (defvar compilation-error-regexp-alist |
93 '( | |
1072 | 94 ;; NOTE! This first one is repeated in grep-regexp-alist, below. |
418 | 95 ;; 4.3BSD grep, cc, lint pass 1: |
96 ;; /usr/src/foo/foo.c(8): warning: w may be used before set | |
97 ;; or GNU utilities | |
98 ;; foo.c:8: error message | |
1702
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
99 ;; |
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
100 ;; We'll insist that the number be followed by a colon or closing |
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
101 ;; paren, because otherwise this matches just about anything |
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
102 ;; containing a number with spaces around it. |
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
103 ("^\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:)]" 1 2) |
418 | 104 ;; 4.3BSD lint pass 2 |
105 ;; strcmp: variable # of args. llib-lc(359) :: /usr/src/foo/foo.c(8) | |
727 | 106 ("[ \t:]+\\([^:( \t\n]+\\)[ \t]*[:(]*(+[ \t]*\\([0-9]+\\))[:) \t]*$" 1 2) |
418 | 107 ;; 4.3BSD lint pass 3 |
108 ;; bloofle defined( /users/wolfgang/foo.c(4) ), but never used | |
727 | 109 ;; This used to be |
110 ;; ("[ \t(]+\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2) | |
111 ;; which is regexp Impressionism - it matches almost anything! | |
112 ("([ \t]*\\([^:( \t\n]+\\)[ \t]*[:(][ \t]*\\([0-9]+\\))" 1 2) | |
418 | 113 ;; Line 45 of "foo.c": bloofel undefined (who does this?) |
727 | 114 ("^[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+of[ \t]+\"\\([^\"\n]+\\)\":" 2 1) |
418 | 115 ;; Apollo cc, 4.3BSD fc |
116 ;; "foo.f", line 3: Error: syntax error near end of statement | |
727 | 117 ("^\"\\([^\"\n]+\\)\", line \\([0-9]+\\):" 1 2) |
418 | 118 ;; HP-UX 7.0 fc |
119 ;; foo.f :16 some horrible error message | |
727 | 120 ("^\\([^ \t\n:]+\\)[ \t]*:\\([0-9]+\\)" 1 2) |
418 | 121 ;; IBM AIX PS/2 C version 1.1 |
122 ;; ****** Error number 140 in line 8 of file errors.c ****** | |
727 | 123 ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1) |
418 | 124 ;; IBM AIX lint is too painful to do right this way. File name |
125 ;; prefixes entire sections rather than being on each line. | |
1702
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
126 |
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
127 ;; MIPS RISC CC - the one distributed with Ultrix. |
817bd71e0e72
* compile.el (compilation-error-regexp-alist): Tightened up
Jim Blandy <jimb@redhat.com>
parents:
1554
diff
changeset
|
128 (": \\([^,]+\\), line \\([0-9]+\\):" 1 2) |
418 | 129 ) |
1133 | 130 "Alist that specifies how to match errors in compiler output. |
131 Each element has the form (REGEXP FILE-IDX LINE-IDX). | |
132 If REGEXP matches, the FILE-IDX'th subexpression gives the file | |
418 | 133 name, and the LINE-IDX'th subexpression gives the line number.") |
71 | 134 |
1072 | 135 (defvar grep-regexp-alist |
136 '(("^\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2)) | |
137 "Regexp used to match grep hits. See `compilation-error-regexp-alist'.") | |
138 | |
569 | 139 ;;;###autoload |
418 | 140 (defvar compilation-search-path '(nil) |
569 | 141 "*List of directories to search for source files named in error messages. |
418 | 142 Elements should be directory names, not file names of directories. |
143 nil as an element means to try the default directory.") | |
71 | 144 |
145 (defvar compile-command "make -k " | |
146 "Last shell command used to do a compilation; default for next compilation. | |
147 | |
148 Sometimes it is useful for files to supply local values for this variable. | |
149 You might also use mode hooks to specify it in certain modes, like this: | |
150 | |
151 (setq c-mode-hook | |
152 '(lambda () (or (file-exists-p \"makefile\") (file-exists-p \"Makefile\") | |
153 (progn (make-local-variable 'compile-command) | |
154 (setq compile-command | |
155 (concat \"make -k \" | |
156 buffer-file-name))))))") | |
157 | |
418 | 158 (defconst compilation-enter-directory-regexp |
727 | 159 ": Entering directory `\\(.*\\)'$" |
1133 | 160 "Regular expression matching lines that indicate a new current directory. |
161 This must contain one \\(, \\) pair around the directory name. | |
418 | 162 |
163 The default value matches lines printed by the `-w' option of GNU Make.") | |
71 | 164 |
418 | 165 (defconst compilation-leave-directory-regexp |
727 | 166 ": Leaving directory `\\(.*\\)'$" |
1133 | 167 "Regular expression matching lines that indicate restoring current directory. |
168 This may contain one \\(, \\) pair around the name of the directory | |
169 being moved from. If it does not, the last directory entered \(by a | |
170 line matching `compilation-enter-directory-regexp'\) is assumed. | |
418 | 171 |
172 The default value matches lines printed by the `-w' option of GNU Make.") | |
173 | |
174 (defvar compilation-directory-stack nil | |
1133 | 175 "Stack of previous directories for `compilation-leave-directory-regexp'. |
176 The head element is the directory the compilation was started in.") | |
418 | 177 |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
178 ;; History of compile commands. |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
179 (defvar compile-history nil) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
180 ;; History of grep commands. |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
181 (defvar grep-history nil) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
182 |
418 | 183 ;;;###autoload |
71 | 184 (defun compile (command) |
185 "Compile the program including the current buffer. Default: run `make'. | |
186 Runs COMMAND, a shell command, in a separate process asynchronously | |
187 with output going to the buffer `*compilation*'. | |
418 | 188 |
71 | 189 You can then use the command \\[next-error] to find the next error message |
190 and move to the source code that caused it. | |
191 | |
192 To run more than one compilation at once, start one and rename the | |
418 | 193 \`*compilation*' buffer to some other name with \\[rename-buffer]. |
194 Then start the next one. | |
195 | |
196 The name used for the buffer is actually whatever is returned by | |
197 the function in `compilation-buffer-name-function', so you can set that | |
198 to a function that generates a unique name." | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
199 (interactive (list (read-from-minibuffer "Compile command: " |
865
637812e90946
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
864
diff
changeset
|
200 compile-command nil nil |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
201 '(compile-history . 1)))) |
71 | 202 (setq compile-command command) |
203 (save-some-buffers nil nil) | |
418 | 204 (compile-internal compile-command "No more errors")) |
71 | 205 |
418 | 206 ;;;###autoload |
71 | 207 (defun grep (command-args) |
208 "Run grep, with user-specified args, and collect output in a buffer. | |
209 While grep runs asynchronously, you can use the \\[next-error] command | |
418 | 210 to find the text that grep hits refer to. |
211 | |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
212 This command uses a special history list for its arguments, so you can |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
213 easily repeat a grep command." |
71 | 214 (interactive |
864
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
215 (list (read-from-minibuffer "Run grep (like this): " |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
216 "grep -n " nil nil 'grep-history))) |
fe5f6b7c9727
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
217 (compile-internal (concat command-args " /dev/null") |
1072 | 218 "No more grep hits" "grep" |
219 ;; Give it a simpler regexp to match. | |
220 nil grep-regexp-alist)) | |
71 | 221 |
222 (defun compile-internal (command error-message | |
418 | 223 &optional name-of-mode parser regexp-alist |
224 name-function) | |
71 | 225 "Run compilation command COMMAND (low level interface). |
226 ERROR-MESSAGE is a string to print if the user asks to see another error | |
227 and there are no more errors. Third argument NAME-OF-MODE is the name | |
418 | 228 to display as the major mode in the compilation buffer. |
71 | 229 |
418 | 230 Fourth arg PARSER is the error parser function (nil means the default). Fifth |
231 arg REGEXP-ALIST is the error message regexp alist to use (nil means the | |
232 default). Sixth arg NAME-FUNCTION is a function called to name the buffer (nil | |
233 means the default). The defaults for these variables are the global values of | |
234 \`compilation-parse-errors-function', `compilation-error-regexp-alist', and | |
894 | 235 \`compilation-buffer-name-function', respectively. |
236 | |
237 Returns the compilation buffer created." | |
418 | 238 (let (outbuf) |
71 | 239 (save-excursion |
418 | 240 (or name-of-mode |
241 (setq name-of-mode "Compilation")) | |
242 (setq outbuf | |
243 (get-buffer-create | |
244 (funcall (or name-function compilation-buffer-name-function | |
245 (function (lambda (mode) | |
246 (concat "*" (downcase mode) "*")))) | |
247 name-of-mode))) | |
71 | 248 (set-buffer outbuf) |
418 | 249 (let ((comp-proc (get-buffer-process (current-buffer)))) |
250 (if comp-proc | |
251 (if (or (not (eq (process-status comp-proc) 'run)) | |
252 (yes-or-no-p | |
1554
5af75a1a9a24
* compile.el (compile-internal): Use NAME-OF-MODE in the prompt
Jim Blandy <jimb@redhat.com>
parents:
1294
diff
changeset
|
253 (format "A %s process is running; kill it? " |
5af75a1a9a24
* compile.el (compile-internal): Use NAME-OF-MODE in the prompt
Jim Blandy <jimb@redhat.com>
parents:
1294
diff
changeset
|
254 name-of-mode))) |
418 | 255 (condition-case () |
256 (progn | |
257 (interrupt-process comp-proc) | |
258 (sit-for 1) | |
259 (delete-process comp-proc)) | |
260 (error nil)) | |
261 (error "Cannot have two processes in `%s' at once" | |
262 (buffer-name)) | |
263 ))) | |
264 ;; In case the compilation buffer is current, make sure we get the global | |
265 ;; values of compilation-error-regexp-alist, etc. | |
266 (kill-all-local-variables)) | |
267 (let ((regexp-alist (or regexp-alist compilation-error-regexp-alist)) | |
268 (parser (or parser compilation-parse-errors-function)) | |
269 (thisdir default-directory) | |
270 outwin) | |
271 (save-excursion | |
272 ;; Clear out the compilation buffer and make it writable. | |
273 ;; Change its default-directory to the directory where the compilation | |
274 ;; will happen, and insert a `cd' command to indicate this. | |
275 (set-buffer outbuf) | |
276 (setq buffer-read-only nil) | |
277 (erase-buffer) | |
278 (setq default-directory thisdir) | |
279 (insert "cd " thisdir "\n" command "\n") | |
280 (set-buffer-modified-p nil)) | |
281 ;; If we're already in the compilation buffer, go to the end | |
282 ;; of the buffer, so point will track the compilation output. | |
283 (if (eq outbuf (current-buffer)) | |
284 (goto-char (point-max))) | |
285 ;; Pop up the compilation buffer. | |
286 (setq outwin (display-buffer outbuf)) | |
287 (set-buffer outbuf) | |
71 | 288 (compilation-mode) |
712
16823e891d56
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
289 (buffer-disable-undo (current-buffer)) |
732 | 290 (setq buffer-read-only t) |
418 | 291 (set (make-local-variable 'compilation-parse-errors-function) parser) |
292 (set (make-local-variable 'compilation-error-message) error-message) | |
293 (set (make-local-variable 'compilation-error-regexp-alist) regexp-alist) | |
294 (setq default-directory thisdir | |
295 compilation-directory-stack (list default-directory)) | |
71 | 296 (set-window-start outwin (point-min)) |
418 | 297 (setq mode-name name-of-mode) |
71 | 298 (or (eq outwin (selected-window)) |
418 | 299 (set-window-point outwin (point-min))) |
300 (and compilation-window-height | |
778 | 301 (= (window-width outwin) (frame-width)) |
418 | 302 (let ((w (selected-window))) |
303 (unwind-protect | |
304 (progn | |
305 (select-window outwin) | |
306 (enlarge-window (- compilation-window-height | |
307 (window-height)))) | |
308 (select-window w)))) | |
309 ;; Start the compilation. | |
740 | 310 (let ((proc (start-process-shell-command (downcase mode-name) |
311 outbuf | |
312 command))) | |
313 (set-process-sentinel proc 'compilation-sentinel) | |
314 (setq compilation-in-progress (cons proc compilation-in-progress)))) | |
418 | 315 ;; Make it so the next C-x ` will use this buffer. |
316 (setq compilation-last-buffer outbuf))) | |
71 | 317 |
318 (defvar compilation-mode-map | |
319 (let ((map (make-sparse-keymap))) | |
320 (define-key map "\C-c\C-c" 'compile-goto-error) | |
418 | 321 (define-key map "\C-c\C-k" 'kill-compilation) |
894 | 322 (define-key map " " 'scroll-up) |
323 (define-key map "\^?" 'scroll-down) | |
324 (define-key map "\M-n" 'compilation-next-error) | |
325 (define-key map "\M-p" 'compilation-previous-error) | |
946 | 326 (define-key map "\M-{" 'compilation-previous-file) |
327 (define-key map "\M-}" 'compilation-next-file) | |
71 | 328 map) |
329 "Keymap for compilation log buffers.") | |
330 | |
331 (defun compilation-mode () | |
332 "Major mode for compilation log buffers. | |
333 \\<compilation-mode-map>To visit the source for a line-numbered error, | |
418 | 334 move point to the error message line and type \\[compile-goto-error]. |
569 | 335 To kill the compilation, type \\[kill-compilation]. |
336 | |
337 Runs `compilation-mode-hook' with `run-hooks' (which see)." | |
71 | 338 (interactive) |
339 (fundamental-mode) | |
340 (use-local-map compilation-mode-map) | |
341 (setq major-mode 'compilation-mode) | |
342 (setq mode-name "Compilation") | |
418 | 343 ;; Make buffer's mode line show process state |
344 (setq mode-line-process '(": %s")) | |
345 (set (make-local-variable 'compilation-error-list) nil) | |
346 (set (make-local-variable 'compilation-old-error-list) nil) | |
347 (set (make-local-variable 'compilation-parsing-end) 1) | |
348 (set (make-local-variable 'compilation-directory-stack) nil) | |
569 | 349 (setq compilation-last-buffer (current-buffer)) |
350 (run-hooks 'compilation-mode-hook)) | |
71 | 351 |
352 ;; Called when compilation process changes state. | |
353 (defun compilation-sentinel (proc msg) | |
418 | 354 "Sentinel for compilation buffers." |
355 (let ((buffer (process-buffer proc))) | |
740 | 356 (if (memq (process-status proc) '(signal exit)) |
357 (progn | |
358 (if (null (buffer-name buffer)) | |
359 ;; buffer killed | |
360 (set-process-buffer proc nil) | |
361 (let ((obuf (current-buffer)) | |
362 omax opoint) | |
363 ;; save-excursion isn't the right thing if | |
364 ;; process-buffer is current-buffer | |
365 (unwind-protect | |
366 (progn | |
367 ;; Write something in the compilation buffer | |
368 ;; and hack its mode line. | |
369 (set-buffer buffer) | |
370 (setq buffer-read-only nil) | |
371 (setq omax (point-max) | |
372 opoint (point)) | |
373 (goto-char omax) | |
374 ;; Record where we put the message, so we can ignore it | |
375 ;; later on. | |
376 (insert ?\n mode-name " " msg) | |
377 (forward-char -1) | |
378 (insert " at " (substring (current-time-string) 0 19)) | |
379 (forward-char 1) | |
380 (setq mode-line-process | |
381 (concat ": " | |
382 (symbol-name (process-status proc)))) | |
383 ;; Since the buffer and mode line will show that the | |
384 ;; process is dead, we can delete it now. Otherwise it | |
385 ;; will stay around until M-x list-processes. | |
386 (delete-process proc) | |
387 ;; Force mode line redisplay soon. | |
388 (set-buffer-modified-p (buffer-modified-p)) | |
389 (setq buffer-read-only t) ;I think is this wrong --roland | |
390 (if (and opoint (< opoint omax)) | |
1133 | 391 (goto-char opoint)) |
392 (if compilation-finish-function | |
393 (funcall compilation-finish-function buffer msg))) | |
394 (set-buffer obuf)))) | |
740 | 395 (setq compilation-in-progress (delq proc compilation-in-progress)) |
396 )))) | |
71 | 397 |
920 | 398 ;; Return the cdr of compilation-old-error-list for the error containing point. |
399 (defun compile-error-at-point () | |
400 (compile-reinitialize-errors nil (point)) | |
401 (let ((errors compilation-old-error-list)) | |
402 (while (and errors | |
403 (> (point) (car (car errors)))) | |
404 (setq errors (cdr errors))) | |
405 errors)) | |
406 | |
894 | 407 (defun compilation-next-error (n) |
408 "Move point to the next error in the compilation buffer. | |
409 Does NOT find the source line like \\[next-error]." | |
410 (interactive "p") | |
411 (or (compilation-buffer-p (current-buffer)) | |
412 (error "Not in a compilation buffer.")) | |
413 (setq compilation-last-buffer (current-buffer)) | |
414 | |
920 | 415 (let ((errors (compile-error-at-point))) |
894 | 416 |
920 | 417 ;; Move to the error after the one containing point. |
418 (goto-char (car (if (< n 0) | |
419 (let ((i 0) | |
420 (e compilation-old-error-list)) | |
421 ;; See how many cdrs away ERRORS is from the start. | |
422 (while (not (eq e errors)) | |
423 (setq i (1+ i) | |
424 e (cdr e))) | |
425 (if (> (- n) i) | |
426 (error "Moved back past first error") | |
427 (nth (+ i n) compilation-old-error-list))) | |
428 (let ((compilation-error-list (cdr errors))) | |
429 (compile-reinitialize-errors nil nil n) | |
430 (if compilation-error-list | |
431 (nth (1- n) compilation-error-list) | |
432 (error "Moved past last error")))))))) | |
894 | 433 |
434 (defun compilation-previous-error (n) | |
435 "Move point to the previous error in the compilation buffer. | |
436 Does NOT find the source line like \\[next-error]." | |
437 (interactive "p") | |
438 (compilation-next-error (- n))) | |
439 | |
440 | |
920 | 441 (defun compile-file-of-error (data) |
442 (setq data (cdr data)) | |
443 (if (markerp data) | |
444 (buffer-file-name (marker-buffer data)) | |
445 (setq data (car data)) | |
446 (expand-file-name (cdr data) (car data)))) | |
447 | |
448 (defun compilation-next-file (n) | |
449 "Move point to the next error for a different file than the current one." | |
450 (interactive "p") | |
451 (or (compilation-buffer-p (current-buffer)) | |
452 (error "Not in a compilation buffer.")) | |
453 (setq compilation-last-buffer (current-buffer)) | |
454 | |
455 (let ((reversed (< n 0)) | |
456 errors file) | |
457 | |
458 (if (not reversed) | |
459 (setq errors (or (compile-error-at-point) | |
460 (error "Moved past last error"))) | |
461 | |
462 ;; Get a reversed list of the errors up through the one containing point. | |
463 (compile-reinitialize-errors nil (point)) | |
464 (setq errors (reverse compilation-old-error-list) | |
465 n (- n)) | |
466 | |
467 ;; Ignore errors after point. (car ERRORS) will be the error | |
468 ;; containing point, (cadr ERRORS) the one before it. | |
469 (while (and errors | |
470 (< (point) (car (car errors)))) | |
471 (setq errors (cdr errors)))) | |
472 | |
473 (while (> n 0) | |
474 (setq file (compile-file-of-error (car errors))) | |
475 | |
476 ;; Skip past the other errors for this file. | |
477 (while (string= file | |
478 (compile-file-of-error | |
479 (car (or errors | |
480 (if reversed | |
936 | 481 (error "%s the first erring file" file) |
920 | 482 (let ((compilation-error-list nil)) |
483 ;; Parse some more. | |
484 (compile-reinitialize-errors nil nil 2) | |
485 (setq errors compilation-error-list))) | |
936 | 486 (error "%s is the last erring file" file))))) |
920 | 487 (setq errors (cdr errors))) |
488 | |
489 (setq n (1- n))) | |
490 | |
491 ;; Move to the following error. | |
492 (goto-char (car (car (or errors | |
493 (if reversed | |
494 (error "This is the first erring file") | |
495 (let ((compilation-error-list nil)) | |
496 ;; Parse the last one. | |
497 (compile-reinitialize-errors nil nil 1) | |
498 compilation-error-list)))))))) | |
499 | |
500 (defun compilation-previous-file (n) | |
501 "Move point to the previous error for a different file than the current one." | |
502 (interactive "p") | |
503 (compilation-next-file (- n))) | |
504 | |
505 | |
71 | 506 (defun kill-compilation () |
507 "Kill the process made by the \\[compile] command." | |
508 (interactive) | |
418 | 509 (let ((buffer (compilation-find-buffer))) |
71 | 510 (if (get-buffer-process buffer) |
418 | 511 (interrupt-process (get-buffer-process buffer)) |
512 (error "The compilation process is not running.")))) | |
71 | 513 |
418 | 514 |
515 ;; Parse any new errors in the compilation buffer, | |
516 ;; or reparse from the beginning if the user has asked for that. | |
907 | 517 (defun compile-reinitialize-errors (argp &optional limit-search find-at-least) |
418 | 518 (save-excursion |
519 (set-buffer compilation-last-buffer) | |
520 ;; If we are out of errors, or if user says "reparse", | |
521 ;; discard the info we have, to force reparsing. | |
522 (if (or (eq compilation-error-list t) | |
523 (consp argp)) | |
524 (progn (compilation-forget-errors) | |
525 (setq compilation-parsing-end 1))) | |
907 | 526 (if (and compilation-error-list |
920 | 527 (or (not limit-search) |
528 (> compilation-parsing-end limit-search)) | |
907 | 529 (or (not find-at-least) |
530 (> (length compilation-error-list) find-at-least))) | |
418 | 531 ;; Since compilation-error-list is non-nil, it points to a specific |
532 ;; error the user wanted. So don't move it around. | |
533 nil | |
534 (switch-to-buffer compilation-last-buffer) | |
71 | 535 (set-buffer-modified-p nil) |
920 | 536 (if (< compilation-parsing-end (point-max)) |
537 (let ((at-start (= compilation-parsing-end 1))) | |
538 (funcall compilation-parse-errors-function | |
539 limit-search find-at-least) | |
540 ;; Remember the entire list for compilation-forget-errors. | |
541 ;; If this is an incremental parse, append to previous list. | |
542 (if at-start | |
543 (setq compilation-old-error-list compilation-error-list) | |
544 (setq compilation-old-error-list | |
545 (nconc compilation-old-error-list compilation-error-list))) | |
546 ))))) | |
71 | 547 |
548 (defun compile-goto-error (&optional argp) | |
549 "Visit the source for the error message point is on. | |
550 Use this command in a compilation log buffer. | |
885 | 551 \\[universal-argument] as a prefix arg means to reparse the buffer's error messages first; |
71 | 552 other kinds of prefix arguments are ignored." |
553 (interactive "P") | |
418 | 554 (or (compilation-buffer-p (current-buffer)) |
555 (error "Not in a compilation buffer.")) | |
556 (setq compilation-last-buffer (current-buffer)) | |
885 | 557 (compile-reinitialize-errors argp (point)) |
894 | 558 |
1072 | 559 ;; Move to bol; the marker for the error on this line will point there. |
560 (beginning-of-line) | |
561 | |
894 | 562 ;; Move compilation-error-list to the elt of compilation-old-error-list |
901 | 563 ;; we want. |
894 | 564 (setq compilation-error-list compilation-old-error-list) |
901 | 565 (while (and compilation-error-list |
566 (> (point) (car (car compilation-error-list)))) | |
894 | 567 (setq compilation-error-list (cdr compilation-error-list))) |
568 | |
71 | 569 ;; Move to another window, so that next-error's window changes |
570 ;; result in the desired setup. | |
571 (or (one-window-p) | |
894 | 572 (progn |
573 (other-window -1) | |
574 ;; other-window changed the selected buffer, | |
575 ;; but we didn't want to do that. | |
576 (set-buffer compilation-last-buffer))) | |
577 | |
901 | 578 (next-error 1)) |
71 | 579 |
418 | 580 (defun compilation-buffer-p (buffer) |
581 (assq 'compilation-error-list (buffer-local-variables buffer))) | |
582 | |
583 ;; Return a compilation buffer. | |
584 ;; If the current buffer is a compilation buffer, return it. | |
585 ;; If compilation-last-buffer is set to a live buffer, use that. | |
586 ;; Otherwise, look for a compilation buffer and signal an error | |
587 ;; if there are none. | |
621 | 588 (defun compilation-find-buffer (&optional other-buffer) |
589 (if (and (not other-buffer) | |
590 (compilation-buffer-p (current-buffer))) | |
418 | 591 ;; The current buffer is a compilation buffer. |
592 (current-buffer) | |
621 | 593 (if (and compilation-last-buffer (buffer-name compilation-last-buffer) |
594 (or (not other-buffer) (not (eq compilation-last-buffer | |
595 (current-buffer))))) | |
418 | 596 compilation-last-buffer |
597 (let ((buffers (buffer-list))) | |
621 | 598 (while (and buffers (or (not (compilation-buffer-p (car buffers))) |
599 (and other-buffer | |
600 (eq (car buffers) (current-buffer))))) | |
418 | 601 (setq buffers (cdr buffers))) |
602 (if buffers | |
603 (car buffers) | |
621 | 604 (or (and other-buffer |
605 (compilation-buffer-p (current-buffer)) | |
606 ;; The current buffer is a compilation buffer. | |
607 (progn | |
608 (if other-buffer | |
609 (message "This is the only compilation buffer.")) | |
610 (current-buffer))) | |
611 (error "No compilation started!"))))))) | |
418 | 612 |
613 ;;;###autoload | |
71 | 614 (defun next-error (&optional argp) |
615 "Visit next compilation error message and corresponding source code. | |
616 This operates on the output from the \\[compile] command. | |
617 If all preparsed error messages have been processed, | |
618 the error message buffer is checked for new ones. | |
619 | |
620 A prefix arg specifies how many error messages to move; | |
621 negative means move back to previous error messages. | |
622 Just C-u as a prefix means reparse the error message buffer | |
623 and start at the first error. | |
624 | |
625 \\[next-error] normally applies to the most recent compilation started, | |
626 but as long as you are in the middle of parsing errors from one compilation | |
627 output buffer, you stay with that compilation output buffer. | |
628 | |
629 Use \\[next-error] in a compilation output buffer to switch to | |
630 processing errors from that compilation. | |
631 | |
418 | 632 See variables `compilation-parse-errors-function' and |
633 \`compilation-error-regexp-alist' for customization ideas." | |
71 | 634 (interactive "P") |
418 | 635 (setq compilation-last-buffer (compilation-find-buffer)) |
920 | 636 (compile-reinitialize-errors argp nil (1- (prefix-numeric-value argp))) |
418 | 637 ;; Make ARGP nil if the prefix arg was just C-u, |
638 ;; since that means to reparse the errors, which the | |
639 ;; compile-reinitialize-errors call just did. | |
640 ;; Now we are only interested in a numeric prefix arg. | |
71 | 641 (if (consp argp) |
642 (setq argp nil)) | |
418 | 643 (let (next-errors next-error) |
644 (save-excursion | |
645 (set-buffer compilation-last-buffer) | |
901 | 646 ;; compilation-error-list points to the "current" error. |
647 (setq next-errors (nthcdr (1- (prefix-numeric-value argp)) | |
894 | 648 compilation-error-list) |
418 | 649 next-error (car next-errors)) |
650 (while | |
71 | 651 (progn |
418 | 652 (if (null next-error) |
653 (progn | |
654 (if argp (if (> (prefix-numeric-value argp) 0) | |
655 (error "Moved past last error") | |
656 (error "Moved back past first error"))) | |
657 (compilation-forget-errors) | |
658 (error (concat compilation-error-message | |
659 (and (get-buffer-process (current-buffer)) | |
660 (eq (process-status | |
661 (get-buffer-process | |
662 (current-buffer))) | |
663 'run) | |
664 " yet")))) | |
665 (setq compilation-error-list (cdr next-errors)) | |
666 (if (null (cdr next-error)) | |
667 ;; This error is boring. Go to the next. | |
668 t | |
669 (or (markerp (cdr next-error)) | |
670 ;; This error has a filename/lineno pair. | |
671 ;; Find the file and turn it into a marker. | |
672 (let* ((fileinfo (car (cdr next-error))) | |
673 (buffer (compilation-find-file (cdr fileinfo) | |
674 (car fileinfo) | |
675 (car next-error)))) | |
676 (if (null buffer) | |
677 ;; We can't find this error's file. | |
678 ;; Remove all errors in the same file. | |
679 (progn | |
680 (setq next-errors compilation-old-error-list) | |
681 (while next-errors | |
682 (and (consp (cdr (car next-errors))) | |
683 (equal (car (cdr (car next-errors))) | |
684 fileinfo) | |
685 (progn | |
686 (set-marker (car (car next-errors)) nil) | |
687 (setcdr (car next-errors) nil))) | |
688 (setq next-errors (cdr next-errors))) | |
689 ;; Look for the next error. | |
690 t) | |
691 ;; We found the file. Get a marker for this error. | |
692 (set-buffer buffer) | |
693 (save-excursion | |
694 (save-restriction | |
695 (widen) | |
696 (let ((errors compilation-old-error-list) | |
697 (last-line (cdr (cdr next-error)))) | |
698 (goto-line last-line) | |
699 (beginning-of-line) | |
700 (setcdr next-error (point-marker)) | |
701 ;; Make all the other error messages referring | |
702 ;; to the same file have markers into the buffer. | |
703 (while errors | |
704 (and (consp (cdr (car errors))) | |
705 (equal (car (cdr (car errors))) fileinfo) | |
706 (let ((this (cdr (cdr (car errors)))) | |
707 (lines (- (cdr (cdr (car errors))) | |
708 last-line))) | |
709 (if (eq selective-display t) | |
710 (if (< lines 0) | |
711 (re-search-backward "[\n\C-m]" | |
712 nil 'end | |
713 (- lines)) | |
714 (re-search-forward "[\n\C-m]" | |
715 nil 'end | |
716 lines)) | |
717 (forward-line lines)) | |
718 (setq last-line this) | |
719 (setcdr (car errors) (point-marker)))) | |
720 (setq errors (cdr errors))))))))) | |
721 ;; If we didn't get a marker for this error, | |
722 ;; go on to the next one. | |
723 (not (markerp (cdr next-error)))))) | |
724 (setq next-errors compilation-error-list | |
725 next-error (car next-errors)))) | |
726 | |
727 ;; Skip over multiple error messages for the same source location, | |
728 ;; so the next C-x ` won't go to an error in the same place. | |
729 (while (and compilation-error-list | |
730 (equal (cdr (car compilation-error-list)) (cdr next-error))) | |
731 (setq compilation-error-list (cdr compilation-error-list))) | |
732 | |
733 ;; We now have a marker for the position of the error. | |
734 (switch-to-buffer (marker-buffer (cdr next-error))) | |
735 (goto-char (cdr next-error)) | |
736 ;; If narrowing got in the way of | |
737 ;; going to the right place, widen. | |
738 (or (= (point) (marker-position (cdr next-error))) | |
739 (progn | |
740 (widen) | |
741 (goto-char (cdr next-error)))) | |
742 | |
71 | 743 ;; Show compilation buffer in other window, scrolled to this error. |
744 (let* ((pop-up-windows t) | |
745 (w (display-buffer (marker-buffer (car next-error))))) | |
746 (set-window-point w (car next-error)) | |
418 | 747 (set-window-start w (car next-error))))) |
748 | |
749 ;;;###autoload | |
750 (define-key ctl-x-map "`" 'next-error) | |
71 | 751 |
418 | 752 ;; Find a buffer for file FILENAME. |
753 ;; Search the directories in compilation-search-path. | |
754 ;; A nil in compilation-search-path means to try the | |
755 ;; current directory, which is passed in DIR. | |
756 ;; If FILENAME is not found at all, ask the user where to find it. | |
757 ;; Pop up the buffer containing MARKER and scroll to MARKER if we ask the user. | |
758 (defun compilation-find-file (filename dir marker) | |
759 (let ((dirs compilation-search-path) | |
760 result name) | |
761 (while (and dirs (null result)) | |
762 (setq name (expand-file-name filename (or (car dirs) dir)) | |
763 result (and (file-exists-p name) | |
764 (find-file-noselect name)) | |
765 dirs (cdr dirs))) | |
766 (or result | |
767 ;; The file doesn't exist. | |
768 ;; Ask the user where to find it. | |
769 ;; If he hits C-g, then the next time he does | |
770 ;; next-error, he'll skip past it. | |
771 (progn | |
772 (let* ((pop-up-windows t) | |
773 (w (display-buffer (marker-buffer marker)))) | |
774 (set-window-point w marker) | |
775 (set-window-start w marker)) | |
776 (setq name | |
777 (expand-file-name | |
778 (read-file-name | |
779 (format "Find this error in: (default %s) " | |
780 filename) dir filename t))) | |
781 (if (file-directory-p name) | |
782 (setq name (concat (file-name-as-directory name) filename))) | |
783 (if (file-exists-p name) | |
784 (find-file-noselect name)))))) | |
785 | |
786 ;; Set compilation-error-list to nil, and unchain the markers that point to the | |
787 ;; error messages and their text, so that they no longer slow down gap motion. | |
788 ;; This would happen anyway at the next garbage collection, but it is better to | |
894 | 789 ;; do it right away. |
71 | 790 (defun compilation-forget-errors () |
791 (while compilation-old-error-list | |
792 (let ((next-error (car compilation-old-error-list))) | |
793 (set-marker (car next-error) nil) | |
418 | 794 (if (markerp (cdr next-error)) |
795 (set-marker (cdr next-error) nil))) | |
71 | 796 (setq compilation-old-error-list (cdr compilation-old-error-list))) |
418 | 797 (setq compilation-error-list nil) |
798 (while (cdr compilation-directory-stack) | |
799 (setq compilation-directory-stack (cdr compilation-directory-stack)))) | |
800 | |
801 | |
802 (defun count-regexp-groupings (regexp) | |
803 "Return the number of \\( ... \\) groupings in REGEXP (a string)." | |
804 (let ((groupings 0) | |
805 (len (length regexp)) | |
806 (i 0) | |
807 c) | |
808 (while (< i len) | |
809 (setq c (aref regexp i) | |
810 i (1+ i)) | |
811 (cond ((= c ?\[) | |
812 ;; Find the end of this [...]. | |
813 (while (and (< i len) | |
814 (not (= (aref regexp i) ?\]))) | |
815 (setq i (1+ i)))) | |
816 ((= c ?\\) | |
817 (if (< i len) | |
818 (progn | |
819 (setq c (aref regexp i) | |
820 i (1+ i)) | |
821 (if (= c ?\)) | |
822 ;; We found the end of a grouping, | |
823 ;; so bump our counter. | |
824 (setq groupings (1+ groupings)))))))) | |
825 groupings)) | |
71 | 826 |
907 | 827 (defun compilation-parse-errors (limit-search find-at-least) |
71 | 828 "Parse the current buffer as grep, cc or lint error messages. |
418 | 829 See variable `compilation-parse-errors-function' for the interface it uses." |
71 | 830 (setq compilation-error-list nil) |
831 (message "Parsing error messages...") | |
832 (let (text-buffer | |
418 | 833 regexp enter-group leave-group error-group |
885 | 834 alist subexpr error-regexp-groups |
907 | 835 (found-desired nil) |
1133 | 836 (compilation-num-errors-found 0)) |
418 | 837 |
71 | 838 ;; Don't reparse messages already seen at last parse. |
839 (goto-char compilation-parsing-end) | |
840 ;; Don't parse the first two lines as error messages. | |
841 ;; This matters for grep. | |
842 (if (bobp) | |
843 (forward-line 2)) | |
418 | 844 |
845 ;; Compile all the regexps we want to search for into one. | |
846 (setq regexp (concat "\\(" compilation-enter-directory-regexp "\\)\\|" | |
847 "\\(" compilation-leave-directory-regexp "\\)\\|" | |
848 "\\(" (mapconcat (function | |
849 (lambda (elt) | |
850 (concat "\\(" (car elt) "\\)"))) | |
851 compilation-error-regexp-alist | |
852 "\\|") "\\)")) | |
853 | |
854 ;; Find out how many \(...\) groupings are in each of the regexps, and set | |
855 ;; *-GROUP to the grouping containing each constituent regexp (whose | |
856 ;; subgroups will come immediately thereafter) of the big regexp we have | |
857 ;; just constructed. | |
858 (setq enter-group 1 | |
859 leave-group (+ enter-group | |
860 (count-regexp-groupings | |
861 compilation-enter-directory-regexp) | |
862 1) | |
863 error-group (+ leave-group | |
864 (count-regexp-groupings | |
865 compilation-leave-directory-regexp) | |
866 1)) | |
867 | |
868 ;; Compile an alist (IDX FILE LINE), where IDX is the number of the | |
869 ;; subexpression for an entire error-regexp, and FILE and LINE are the | |
870 ;; numbers for the subexpressions giving the file name and line number. | |
871 (setq alist compilation-error-regexp-alist | |
872 subexpr (1+ error-group)) | |
873 (while alist | |
874 (setq error-regexp-groups (cons (list subexpr | |
875 (+ subexpr (nth 1 (car alist))) | |
876 (+ subexpr (nth 2 (car alist)))) | |
877 error-regexp-groups)) | |
878 (setq subexpr (+ subexpr 1 (count-regexp-groupings (car (car alist))))) | |
879 (setq alist (cdr alist))) | |
880 | |
894 | 881 (while (and (not found-desired) |
885 | 882 ;; We don't just pass LIMIT-SEARCH to re-search-forward |
883 ;; because we want to find matches containing LIMIT-SEARCH | |
884 ;; but which extend past it. | |
894 | 885 (re-search-forward regexp nil t)) |
935 | 886 |
418 | 887 ;; Figure out which constituent regexp matched. |
888 (cond ((match-beginning enter-group) | |
889 ;; The match was the enter-directory regexp. | |
890 (let ((dir | |
891 (file-name-as-directory | |
892 (expand-file-name | |
893 (buffer-substring (match-beginning (+ enter-group 1)) | |
894 (match-end (+ enter-group 1))))))) | |
895 (setq compilation-directory-stack | |
896 (cons dir compilation-directory-stack)) | |
897 (and (file-directory-p dir) | |
898 (setq default-directory dir)))) | |
899 | |
900 ((match-beginning leave-group) | |
901 ;; The match was the leave-directory regexp. | |
902 (let ((beg (match-beginning (+ leave-group 1))) | |
903 (stack compilation-directory-stack)) | |
904 (if beg | |
905 (let ((dir | |
906 (file-name-as-directory | |
907 (expand-file-name | |
908 (buffer-substring beg | |
909 (match-end (+ leave-group | |
910 1))))))) | |
911 (while (and stack | |
912 (not (string-equal (car stack) dir))) | |
913 (setq stack (cdr stack))))) | |
914 (setq compilation-directory-stack (cdr stack)) | |
915 (setq stack (car compilation-directory-stack)) | |
916 (if stack | |
917 (setq default-directory stack)) | |
918 )) | |
919 | |
920 ((match-beginning error-group) | |
921 ;; The match was the composite error regexp. | |
922 ;; Find out which individual regexp matched. | |
923 (setq alist error-regexp-groups) | |
924 (while (and alist | |
925 (null (match-beginning (car (car alist))))) | |
926 (setq alist (cdr alist))) | |
927 (if alist | |
928 (setq alist (car alist)) | |
1273
bbf7e139412b
(compilation-parse-errors): After we get enough errors to stop early, toss
Roland McGrath <roland@gnu.org>
parents:
1271
diff
changeset
|
929 (error "compilation-parse-errors: Impossible regexp match!")) |
418 | 930 |
931 ;; Extract the file name and line number from the error message. | |
1294
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
932 (let ((beginning-of-match (match-beginning 0)) ;looking-at nukes |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
933 (filename |
418 | 934 (cons default-directory |
935 (buffer-substring (match-beginning (nth 1 alist)) | |
936 (match-end (nth 1 alist))))) | |
937 (linenum (save-restriction | |
938 (narrow-to-region | |
939 (match-beginning (nth 2 alist)) | |
940 (match-end (nth 2 alist))) | |
941 (goto-char (point-min)) | |
942 (if (looking-at "[0-9]") | |
943 (read (current-buffer)))))) | |
944 ;; Locate the erring file and line. | |
945 ;; Cons a new elt onto compilation-error-list, | |
946 ;; giving a marker for the current compilation buffer | |
947 ;; location, and the file and line number of the error. | |
948 (save-excursion | |
949 (beginning-of-line 1) | |
950 (setq compilation-error-list | |
951 (cons (cons (point-marker) | |
952 (cons filename linenum)) | |
1294
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
953 compilation-error-list))) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
954 (setq compilation-num-errors-found |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
955 (1+ compilation-num-errors-found)) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
956 (and find-at-least (>= compilation-num-errors-found |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
957 find-at-least) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
958 ;; We have found as many new errors as the user wants. |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
959 ;; We continue to parse until we have seen all |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
960 ;; the consecutive errors in the same file, |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
961 ;; so the error positions will be recorded as markers |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
962 ;; in this buffer that might change. |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
963 (cdr compilation-error-list) ; Must check at least two. |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
964 (not (equal (car (cdr (nth 0 compilation-error-list))) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
965 (car (cdr (nth 1 compilation-error-list))))) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
966 (progn |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
967 ;; Discard the error just parsed, so that the next |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
968 ;; parsing run can get it and the following errors in |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
969 ;; the same file all at once. If we didn't do this, we |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
970 ;; would have the same problem we are trying to avoid |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
971 ;; with the test above, just delayed until the next run! |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
972 (setq compilation-error-list |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
973 (cdr compilation-error-list)) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
974 (goto-char beginning-of-match) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
975 (setq found-desired t))) |
81c5d1c4a7ed
(compilation-parse-errors): Save (match-beginning 0) in a variable, so the
Roland McGrath <roland@gnu.org>
parents:
1273
diff
changeset
|
976 ) |
1273
bbf7e139412b
(compilation-parse-errors): After we get enough errors to stop early, toss
Roland McGrath <roland@gnu.org>
parents:
1271
diff
changeset
|
977 ) |
418 | 978 (t |
894 | 979 (error "compilation-parse-errors: impossible regexp match!"))) |
935 | 980 |
981 (message "Parsing error messages...%d (%d%% of buffer)" | |
1133 | 982 compilation-num-errors-found |
935 | 983 (/ (* 100 (point)) (point-max))) |
984 | |
885 | 985 (and limit-search (>= (point) limit-search) |
986 ;; The user wanted a specific error, and we're past it. | |
987 (setq found-desired t))) | |
907 | 988 (setq compilation-parsing-end (if found-desired |
989 (point) | |
990 ;; We have searched the whole buffer. | |
991 (point-max)))) | |
992 (setq compilation-error-list (nreverse compilation-error-list)) | |
993 (message "Parsing error messages...done")) | |
71 | 994 |
995 (define-key ctl-x-map "`" 'next-error) | |
621 | 996 |
997 (provide 'compile) | |
712
16823e891d56
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
998 |
16823e891d56
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
621
diff
changeset
|
999 ;;; compile.el ends here |