projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcc80b8
)
* lisp/emacs-lisp/ewoc.el (ewoc-goto-node):
author
Glenn Morris
<rgm@gnu.org>
Mon, 5 Mar 2018 19:32:20 +0000
(14:32 -0500)
committer
Glenn Morris
<rgm@gnu.org>
Mon, 5 Mar 2018 19:32:20 +0000
(14:32 -0500)
Simplify and quieten compiler.
lisp/emacs-lisp/ewoc.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/ewoc.el
b/lisp/emacs-lisp/ewoc.el
index 262d4d859413de82c61764bbe099a8dc12150e24..52d8451f4bc59eba941b031f166d268caeb07be1 100644
(file)
--- a/
lisp/emacs-lisp/ewoc.el
+++ b/
lisp/emacs-lisp/ewoc.el
@@
-500,7
+500,7
@@
Return the node (or nil if we just passed the last node)."
(defun ewoc-goto-node (ewoc node)
"Move point to NODE in EWOC."
- (
ewoc--set-buffer-bind-dll ewoc
+ (
with-current-buffer (ewoc--buffer ewoc)
(goto-char (ewoc--node-start-marker node))
(if goal-column (move-to-column goal-column))
(setf (ewoc--last-node ewoc) node)))