emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/objed 00fd599 09/59: Skip leading ws on first/last inst


From: Clemens Radermacher
Subject: [elpa] externals/objed 00fd599 09/59: Skip leading ws on first/last instance command, too
Date: Sun, 24 Mar 2019 06:06:35 -0400 (EDT)

branch: externals/objed
commit 00fd59917d34a31fa3f980eb2a3ef9b04b5b31bb
Author: Clemens Radermacher <address@hidden>
Commit: Clemens Radermacher <address@hidden>

    Skip leading ws on first/last instance command, too
---
 objed.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/objed.el b/objed.el
index 7df3b6f..4565fe8 100644
--- a/objed.el
+++ b/objed.el
@@ -1778,7 +1778,7 @@ postitive prefix argument ARG move to the nth next 
object."
            (if (equal top objed--current-obj)
                (message "Already at first instance")
              (objed--update-current-object top)
-             (goto-char (objed--beg)))))))
+             (objed--goto-char (objed--beg)))))))
 
 
 (defun objed-bottom-object ()
@@ -1794,7 +1794,7 @@ postitive prefix argument ARG move to the nth next 
object."
            (if (equal bot objed--current-obj)
                (message "Already at last instance")
              (objed--update-current-object bot)
-             (goto-char (objed--beg)))))))
+             (objed--goto-char (objed--beg)))))))
 
 
 (defun objed-expand-context ()



reply via email to

[Prev in Thread] Current Thread [Next in Thread]