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