aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2008-05-08 15:44:24 +0000
committerJuanma Barranquero <[email protected]>2008-05-08 15:44:24 +0000
commit17d6591521ec3ec025e9455b278d4260e47ca48e (patch)
tree4ad547d0fc56612781709a73fe1bfc2ff564937f
parente8cb0ef8270cb4cf95c3e6b46763e1fdd8ad89e1 (diff)
(org-call-with-arg, org-autoload): Fix typos in docstrings.
-rw-r--r--lisp/org/org-macs.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/org-macs.el b/lisp/org/org-macs.el
index 1dda7d779f..e9d0edb41c 100644
--- a/lisp/org/org-macs.el
+++ b/lisp/org/org-macs.el
@@ -179,7 +179,7 @@ we turn off invisibility temporarily. Use this in a `let' form."
(put 'org-let2 'lisp-indent-function 2)
(defsubst org-call-with-arg (command arg)
- "Call COMMAND interactively, but pretend prefix are was ARG."
+ "Call COMMAND interactively, but pretend prefix arg was ARG."
(let ((current-prefix-arg arg)) (call-interactively command)))
(defsubst org-current-line (&optional pos)
@@ -194,7 +194,7 @@ we turn off invisibility temporarily. Use this in a `let' form."
(>= (match-end n) pos)))
(defun org-autoload (file functions)
- "Establish autoload for all FUNCTIONS in FILE, if not boutd already."
+ "Establish autoload for all FUNCTIONS in FILE, if not bound already."
(let ((d (format "Documentation will be available after `%s.el' is loaded."
file))
f)