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