Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0033146f
Commit
0033146f
authored
Oct 23, 2001
by
Stefan Monnier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(compile-mouse-goto-error, compile-goto-error): Turn caadr into caar of cdr.
parent
61fd8d32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/progmodes/compile.el
lisp/progmodes/compile.el
+2
-2
No files found.
lisp/ChangeLog
View file @
0033146f
2001-10-23 Stefan Monnier <monnier@cs.yale.edu>
* progmodes/compile.el (compile-mouse-goto-error, compile-goto-error):
Turn caadr into caar of cdr.
2001-10-23 Gerd Moellmann <gerd@gnu.org>
* info.el (Info-fontify-node): Bind doun-mouse-{1,2} instead
...
...
lisp/progmodes/compile.el
View file @
0033146f
...
...
@@ -1424,7 +1424,7 @@ at the end of the line."
;; belongs to the first. Especially since this
;; in-between text might be other errors on the same
;; line (see compilation-skip-to-next-location).
(>= (point) (caadr compilation-error-list)))))
(>= (point) (caa
r (c
dr compilation-error-list)))))
)
(setq compilation-error-list (cdr compilation-error-list)))
(or compilation-error-list
(error "
No
error
to
go
to
")))
...
...
@@ -1457,7 +1457,7 @@ other kinds of prefix arguments are ignored."
(or (null (marker-buffer (caar compilation-error-list)))
(and (> (point) (caar compilation-error-list))
(cdr compilation-error-list)
(>= (point) (caadr compilation-error-list)))))
(>= (point) (caa
r (c
dr compilation-error-list)))))
)
(setq compilation-error-list (cdr compilation-error-list)))
(push-mark)
...
...
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