diff options
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/eieio-base.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/eieio-base.el b/lisp/emacs-lisp/eieio-base.el index 74fad83ec20..58dcd09d7ea 100644 --- a/lisp/emacs-lisp/eieio-base.el +++ b/lisp/emacs-lisp/eieio-base.el @@ -259,8 +259,8 @@ identified, and needing more object creation." ;; Earlier versions of `object-write' added a string name for ;; the object, now obsolete. (slots (nthcdr - (if (stringp (nth 1 inputlist) 2 1) - inputlist))) + (if (stringp (nth 1 inputlist)) 2 1) + inputlist)) (createslots nil) (class (progn |