]> git.eshelyaron.com Git - emacs.git/commitdiff
(org-call-with-arg, org-autoload): Fix typos in docstrings.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 8 May 2008 15:44:24 +0000 (15:44 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 8 May 2008 15:44:24 +0000 (15:44 +0000)
lisp/org/org-macs.el

index 1dda7d779fea5cd039105d08871d57237b1ef015..e9d0edb41c851c14a4d54946cf93127fe00820a2 100644 (file)
@@ -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)