annotate lisp/progmodes/compile.el @ 5406:d9a58377567c

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