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