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