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
e9c8e248
Commit
e9c8e248
authored
Apr 28, 1993
by
Roland McGrath
Browse files
(vc-revert-buffer1): Ignore non-marker elts of compilation-error-list.
parent
0b18a8f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
lisp/vc.el
lisp/vc.el
+5
-4
No files found.
lisp/vc.el
View file @
e9c8e248
...
...
@@ -282,10 +282,11 @@ the master name of FILE; this is appended to an optional list of FLAGS."
(
buffer-error-marked-p
nil
))
(
while
(
and
errors
(
not
buffer-error-marked-p
))
(
if
(
eq
buffer
(
marker-buffer
(
car
(
cdr
(
car
errors
)))))
(
setq
buffer-error-marked-p
t
))
(
and
(
markerp
(
car
(
cdr
(
car
errors
))))
(
eq
buffer
(
marker-buffer
(
car
(
cdr
(
car
errors
)))))
(
setq
buffer-error-marked-p
t
))
(
setq
errors
(
cdr
errors
)))
(
if
buffer-error-marked-p
buffer
)))
(
buffer-list
)))))))
...
...
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