aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2005-09-26 09:41:32 +0000
committerJuanma Barranquero2005-09-26 09:41:32 +0000
commitc7d9f1949feb233190499cd13dc101a1aed43771 (patch)
tree64cacdf537b1695545b276e85e629aa176bd24b4
parentb940920d60e3027fe7e611f0f22cb4819ba098f6 (diff)
downloademacs-c7d9f1949feb233190499cd13dc101a1aed43771.tar.gz
emacs-c7d9f1949feb233190499cd13dc101a1aed43771.zip
(org-table-sum): Fix format string.
-rw-r--r--lisp/textmodes/org.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/org.el b/lisp/textmodes/org.el
index 938091d18eb..f10e546d00b 100644
--- a/lisp/textmodes/org.el
+++ b/lisp/textmodes/org.el
@@ -7064,7 +7064,7 @@ If NLAST is a number, only the NLAST fields will actually be summed."
7064 (format "%d:%02d:%02d" h m s)))) 7064 (format "%d:%02d:%02d" h m s))))
7065 (kill-new sres) 7065 (kill-new sres)
7066 (if (interactive-p) 7066 (if (interactive-p)
7067 (message "s" 7067 (message "%s"
7068 (substitute-command-keys 7068 (substitute-command-keys
7069 (format "Sum of %d items: %-20s (\\[yank] will insert result into buffer)" 7069 (format "Sum of %d items: %-20s (\\[yank] will insert result into buffer)"
7070 (length numbers) sres)))) 7070 (length numbers) sres))))
@@ -9587,7 +9587,7 @@ COMMANDS is a list of alternating OLDDEF NEWDEF command names."
9587 (if (fboundp 'command-remapping) 9587 (if (fboundp 'command-remapping)
9588 (define-key map (vector 'remap old) new) 9588 (define-key map (vector 'remap old) new)
9589 (substitute-key-definition old new map global-map))))) 9589 (substitute-key-definition old new map global-map)))))
9590 9590
9591(when (eq org-enable-table-editor 'optimized) 9591(when (eq org-enable-table-editor 'optimized)
9592 ;; If the user wants maximum table support, we need to hijack 9592 ;; If the user wants maximum table support, we need to hijack
9593 ;; some standard editing functions 9593 ;; some standard editing functions