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