From 64e037eb7d921ca28d7286826f533ef14a37a54c Mon Sep 17 00:00:00 2001 From: Eric Abrahamsen Date: Sun, 22 Oct 2017 16:46:49 -0700 Subject: [PATCH] Fix to 2fddfb7ce7 * lisp/emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object): Fix bogus paren wrapping. --- lisp/emacs-lisp/eieio-base.el | 4 ++-- 1 file 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 -- 2.39.2