diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-11-14 12:23:26 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-11-14 12:23:26 -0800 |
commit | 8350f087efe62e2ce0ded434534629a56cdc4e8c (patch) | |
tree | 9976cec81196a0465269f8669f2a85328570dfd4 /lisp/emacs-lisp/eieio-base.el | |
parent | 322ad6ec0e773dffefad12df88c98041ca35b427 (diff) | |
download | emacs-8350f087efe62e2ce0ded434534629a56cdc4e8c.tar.gz emacs-8350f087efe62e2ce0ded434534629a56cdc4e8c.tar.bz2 emacs-8350f087efe62e2ce0ded434534629a56cdc4e8c.zip |
Spelling fixes.
Diffstat (limited to 'lisp/emacs-lisp/eieio-base.el')
-rw-r--r-- | lisp/emacs-lisp/eieio-base.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/eieio-base.el b/lisp/emacs-lisp/eieio-base.el index 139f5e6a4ce..df57148962f 100644 --- a/lisp/emacs-lisp/eieio-base.el +++ b/lisp/emacs-lisp/eieio-base.el @@ -54,7 +54,7 @@ not been set, use values from the parent." (defmethod slot-unbound ((object eieio-instance-inheritor) class slot-name fn) "If a slot OBJECT in this CLASS is unbound, try to inherit, or throw a signal. -SLOT-NAME is the offending slot. FN is the function signalling the error." +SLOT-NAME is the offending slot. FN is the function signaling the error." (if (slot-boundp object 'parent-instance) ;; It may not look like it, but this line recurses back into this ;; method if the parent instance's slot is unbound. |