Mercurial > hg > xemacs-beta
diff lisp/prim/subr.el @ 108:360340f9fd5f r20-1b6
Import from CVS: tag r20-1b6
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:18:39 +0200 |
parents | cf808b4c4290 |
children | 59463afc5666 |
line wrap: on
line diff
--- a/lisp/prim/subr.el Mon Aug 13 09:17:27 2007 +0200 +++ b/lisp/prim/subr.el Mon Aug 13 09:18:39 2007 +0200 @@ -470,7 +470,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 @@ -564,7 +564,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