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