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