Преглед на файлове

org.el (org-sort-entries): Restore the point location when there is nothing to sort

* org.el (org-sort-entries): Restore the point location when
there is nothing to sort.
Bastien Guerry преди 12 години
родител
ревизия
3c71ab34dd
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -8637,7 +8637,7 @@ links."
       (show-all)))
 
     (setq beg (point))
-    (if (>= beg end) (user-error "Nothing to sort"))
+    (when (>= beg end) (goto-char start) (user-error "Nothing to sort"))
 
     (looking-at "\\(\\*+\\)")
     (setq stars (match-string 1)