diff options
| author | Eric Abrahamsen | 2017-10-22 16:46:49 -0700 |
|---|---|---|
| committer | Eric Abrahamsen | 2017-11-08 14:46:03 -0800 |
| commit | 73d670751a633fa478d97fb1bfdab2a753c9b2d2 (patch) | |
| tree | 35c140f3b536d5a4bd71ee1f9023efdd68fb239e | |
| parent | 6c3031399b796feceaab2bdfe94abe7170db4e34 (diff) | |
| download | emacs-73d670751a633fa478d97fb1bfdab2a753c9b2d2.tar.gz emacs-73d670751a633fa478d97fb1bfdab2a753c9b2d2.zip | |
Fix to 2fddfb7ce7
* lisp/emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object):
Fix bogus paren wrapping.
| -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." | |||
| 259 | ;; Earlier versions of `object-write' added a string name for | 259 | ;; Earlier versions of `object-write' added a string name for |
| 260 | ;; the object, now obsolete. | 260 | ;; the object, now obsolete. |
| 261 | (slots (nthcdr | 261 | (slots (nthcdr |
| 262 | (if (stringp (nth 1 inputlist) 2 1) | 262 | (if (stringp (nth 1 inputlist)) 2 1) |
| 263 | inputlist))) | 263 | inputlist)) |
| 264 | (createslots nil) | 264 | (createslots nil) |
| 265 | (class | 265 | (class |
| 266 | (progn | 266 | (progn |