]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/ewoc.el (ewoc-goto-node):
authorGlenn Morris <rgm@gnu.org>
Mon, 5 Mar 2018 19:32:20 +0000 (14:32 -0500)
committerGlenn Morris <rgm@gnu.org>
Mon, 5 Mar 2018 19:32:20 +0000 (14:32 -0500)
Simplify and quieten compiler.

lisp/emacs-lisp/ewoc.el

index 262d4d859413de82c61764bbe099a8dc12150e24..52d8451f4bc59eba941b031f166d268caeb07be1 100644 (file)
@@ -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)))