Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d1ed4475
Commit
d1ed4475
authored
Aug 06, 1992
by
Roland McGrath
Browse files
*** empty log message ***
parent
ca2c38f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
lisp/progmodes/compile.el
lisp/progmodes/compile.el
+2
-5
No files found.
lisp/progmodes/compile.el
View file @
d1ed4475
...
...
@@ -310,8 +310,8 @@ Returns the compilation buffer created."
(
define-key
map
"\^?"
'scroll-down
)
(
define-key
map
"\M-n"
'compilation-next-error
)
(
define-key
map
"\M-p"
'compilation-previous-error
)
(
define-key
map
"\
C-x[
"
'compilation-previous-file
)
(
define-key
map
"\
C-x]
"
'compilation-next-file
)
(
define-key
map
"\
M-{
"
'compilation-previous-file
)
(
define-key
map
"\
M-}
"
'compilation-next-file
)
map
)
"Keymap for compilation log buffers."
)
...
...
@@ -872,7 +872,6 @@ See variable `compilation-parse-errors-function' for the interface it uses."
;; Figure out which constituent regexp matched.
(
cond
((
match-beginning
enter-group
)
(
funcall
progress
)
;; The match was the enter-directory regexp.
(
let
((
dir
(
file-name-as-directory
...
...
@@ -885,7 +884,6 @@ See variable `compilation-parse-errors-function' for the interface it uses."
(
setq
default-directory
dir
))))
((
match-beginning
leave-group
)
(
funcall
progress
)
;; The match was the leave-directory regexp.
(
let
((
beg
(
match-beginning
(
+
leave-group
1
)))
(
stack
compilation-directory-stack
))
...
...
@@ -939,7 +937,6 @@ See variable `compilation-parse-errors-function' for the interface it uses."
(
cons
filename
linenum
))
compilation-error-list
))))
(
setq
nfound
(
1+
nfound
))
(
funcall
progress
)
(
and
find-at-least
(
>=
nfound
find-at-least
)
;; We have found as many new errors as the user wants.
(
setq
found-desired
t
)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment