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