aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2010-01-02 02:03:48 +0100
committerJuanma Barranquero2010-01-02 02:03:48 +0100
commitdb4a7382f0ee49338f9c52adb93cd16c4b93dcd3 (patch)
tree9b1ffd8f685789d5e8becb3d6f4a405eff330137
parentda14b7caecf13214dfe328cdb5a6a5532c41a644 (diff)
downloademacs-db4a7382f0ee49338f9c52adb93cd16c4b93dcd3.tar.gz
emacs-db4a7382f0ee49338f9c52adb93cd16c4b93dcd3.zip
lisp/org/org.el: Fix typos in error messages.
-rw-r--r--lisp/org/ChangeLog5
-rw-r--r--lisp/org/org.el10
2 files changed, 10 insertions, 5 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index cc125d28238..5d612f022fa 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,8 @@
12010-01-01 Juanma Barranquero <lekktu@gmail.com>
2
3 * org.el (org-get-outline-path, org-speed-command-help):
4 Fix typos in error messages.
5
12009-12-14 Juri Linkov <juri@jurta.org> 62009-12-14 Juri Linkov <juri@jurta.org>
2 7
3 * org-html.el (org-export-html-style-include-default): 8 * org-html.el (org-export-html-style-include-default):
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 325a5248dc6..5988c07e987 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -9019,7 +9019,7 @@ avoiding backtracing."
9019 (if fastp 9019 (if fastp
9020 (progn 9020 (progn
9021 (if (> level 19) 9021 (if (> level 19)
9022 (error "Outline path failure, more than 19 levels.")) 9022 (error "Outline path failure, more than 19 levels"))
9023 (loop for i from level upto 19 do 9023 (loop for i from level upto 19 do
9024 (aset org-olpa i nil)) 9024 (aset org-olpa i nil))
9025 (prog1 9025 (prog1
@@ -10502,7 +10502,7 @@ scheduling will use the corresponding date."
10502 (org-add-log-setup 'redeadline nil old-date 'findpos 10502 (org-add-log-setup 'redeadline nil old-date 'findpos
10503 org-log-redeadline)) 10503 org-log-redeadline))
10504 (message "Deadline on %s" org-last-inserted-timestamp))))) 10504 (message "Deadline on %s" org-last-inserted-timestamp)))))
10505 10505
10506(defun org-schedule (&optional remove time) 10506(defun org-schedule (&optional remove time)
10507 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item. 10507 "Insert the SCHEDULED: string with a timestamp to schedule a TODO item.
10508With argument REMOVE, remove any scheduling date from the item. 10508With argument REMOVE, remove any scheduling date from the item.
@@ -14985,7 +14985,7 @@ Some of the options can be changed using the variable
14985 "Show the available speed commands." 14985 "Show the available speed commands."
14986 (interactive) 14986 (interactive)
14987 (if (not org-use-speed-commands) 14987 (if (not org-use-speed-commands)
14988 (error "Speed commands are not activated, customize `org-use-speed-commands'.") 14988 (error "Speed commands are not activated, customize `org-use-speed-commands'")
14989 (with-output-to-temp-buffer "*Help*" 14989 (with-output-to-temp-buffer "*Help*"
14990 (princ "User-defined Speed commands\n===========================\n") 14990 (princ "User-defined Speed commands\n===========================\n")
14991 (mapc 'org-print-speed-command org-speed-commands-user) 14991 (mapc 'org-print-speed-command org-speed-commands-user)
@@ -15028,7 +15028,7 @@ overwritten, and the table is not marked as requiring realignment."
15028 (setq this-command org-speed-command) 15028 (setq this-command org-speed-command)
15029 (call-interactively org-speed-command)) 15029 (call-interactively org-speed-command))
15030 ((functionp org-speed-command) 15030 ((functionp org-speed-command)
15031 (funcall org-speed-command)) 15031 (funcall org-speed-command))
15032 ((and org-speed-command (listp org-speed-command)) 15032 ((and org-speed-command (listp org-speed-command))
15033 (eval org-speed-command)) 15033 (eval org-speed-command))
15034 (t (let (org-use-speed-commands) 15034 (t (let (org-use-speed-commands)
@@ -16188,7 +16188,7 @@ Your bug report will be posted to the Org-mode mailing list.
16188 (save-excursion 16188 (save-excursion
16189 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t) 16189 (if (re-search-backward "^\\(Subject: \\)Org-mode version \\(.*?\\);[ \t]*\\(.*\\)" nil t)
16190 (replace-match "\\1Bug: \\3 [\\2]"))))) 16190 (replace-match "\\1Bug: \\3 [\\2]")))))
16191 16191
16192 16192
16193(defun org-install-agenda-files-menu () 16193(defun org-install-agenda-files-menu ()
16194 (let ((bl (buffer-list))) 16194 (let ((bl (buffer-list)))