Procházet zdrojové kódy

Merge branch 'maint'

Bastien Guerry před 11 roky
rodič
revize
b6a1584fa6
2 změnil soubory, kde provedl 1 přidání a 4 odebrání
  1. 1 1
      lisp/org-table.el
  2. 0 3
      lisp/org.el

+ 1 - 1
lisp/org-table.el

@@ -4141,7 +4141,7 @@ to execute outside of tables."
 	 '(arg)
 	 (concat "In tables, run `" (symbol-name fun) "'.\n"
 		 "Outside of tables, run the binding of `"
-		 (mapconcat (lambda (x) (format "%s" x)) keys "' or `")
+		 (mapconcat #'key-description keys "' or `")
 		 "'.")
 	 '(interactive "p")
 	 (list 'if

+ 0 - 3
lisp/org.el

@@ -19590,9 +19590,6 @@ because, in this case the deletion might narrow the column."
 (put 'org-self-insert-command 'pabbrev-expand-after-command t)
 (put 'orgtbl-self-insert-command 'pabbrev-expand-after-command t)
 
-;; How to do this: Measure non-white length of current string
-;; If equal to column width, we should realign.
-
 (defun org-remap (map &rest commands)
   "In MAP, remap the functions given in COMMANDS.
 COMMANDS is a list of alternating OLDDEF NEWDEF command names."