diff lisp/prim/subr.el @ 30:ec9a17fef872 r19-15b98

Import from CVS: tag r19-15b98
author cvs
date Mon, 13 Aug 2007 08:52:29 +0200
parents 441bb1e64a06
children 131b0175ea99
line wrap: on
line diff
--- a/lisp/prim/subr.el	Mon Aug 13 08:51:58 2007 +0200
+++ b/lisp/prim/subr.el	Mon Aug 13 08:52:29 2007 +0200
@@ -469,7 +469,7 @@
 (defmacro check-argument-type (predicate argument)
   "Check that ARGUMENT satisfies PREDICATE.
 If not, signal a continuable `wrong-type-argument' error until the
-returned value satifies PREDICATE, and assign the returned value
+returned value satisfies PREDICATE, and assign the returned value
 to ARGUMENT."
   `(if (not (,(eval predicate) ,argument))
        (setq ,argument
@@ -563,7 +563,7 @@
 ;; to this, so I'm leaving this undefined for now. --ben
 
 ;;; The objection is this: there is more than one way to load the same file.
-;;; "foo", "foo.elc", "foo.el", and "/some/path/foo.elc" are all differrent
+;;; "foo", "foo.elc", "foo.el", and "/some/path/foo.elc" are all different
 ;;; ways to load the exact same code.  `eval-after-load' is too stupid to
 ;;; deal with this sort of thing.  If this sort of feature is desired, then
 ;;; it should work off of a hook on `provide'.  Features are unique and