Browse Source

org.el (org-priority): Don't use `org-preserve-lc'

* org.el (org-priority): Don't use `org-preserve-lc' as it is
not necessary here.
Bastien Guerry 11 years ago
parent
commit
ac7fb4dd79
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org.el

+ 1 - 1
lisp/org.el

@@ -13882,7 +13882,7 @@ ACTION can be `set', `up', `down', or a character."
 		(insert " [#" news "]"))
 	    (goto-char (match-beginning 3))
 	    (insert "[#" news "] "))))
-      (org-preserve-lc (org-set-tags nil 'align)))
+      (org-set-tags nil 'align))
     (if remove
 	(message "Priority removed")
       (message "Priority of current item set to %s" news)))))