diff options
author | Eric Abrahamsen <eric@ericabrahamsen.net> | 2017-10-22 16:46:49 -0700 |
---|---|---|
committer | Eric Abrahamsen <eric@ericabrahamsen.net> | 2017-11-08 14:46:03 -0800 |
commit | 73d670751a633fa478d97fb1bfdab2a753c9b2d2 (patch) | |
tree | 35c140f3b536d5a4bd71ee1f9023efdd68fb239e /lisp/emacs-lisp | |
parent | 6c3031399b796feceaab2bdfe94abe7170db4e34 (diff) | |
download | emacs-73d670751a633fa478d97fb1bfdab2a753c9b2d2.tar.gz |
Fix to 2fddfb7ce7
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object):
Fix bogus paren wrapping.
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 e718bdf21f4..f11056faecc 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 |