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