Explorar o código

org: fix commit 0911edfac8

* lisp/org.el (org-mode-restart): After `normal-mode´ the mode may not
  be "org-mode".  Explicitly switch to org-mode in that case.
Achim Gratz %!s(int64=11) %!d(string=hai) anos
pai
achega
f2483ec4bb
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  1. 3 0
      lisp/org.el

+ 3 - 0
lisp/org.el

@@ -20468,6 +20468,9 @@ Also updates the keyword regular expressions."
   (interactive)
   ;; this will set the mode *and* set file local variables.
   (normal-mode)
+  ;; but it may leave us in some other mode
+  (unless (string= "org-mode" mode-name)
+    (org-mode))
   (message "Org-mode restarted"))
 
 (defun org-kill-note-or-show-branches ()