emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-26 73d6707: Fix to 2fddfb7ce7


From: Eric Abrahamsen
Subject: [Emacs-diffs] emacs-26 73d6707: Fix to 2fddfb7ce7
Date: Wed, 8 Nov 2017 17:46:10 -0500 (EST)

branch: emacs-26
commit 73d670751a633fa478d97fb1bfdab2a753c9b2d2
Author: Eric Abrahamsen <address@hidden>
Commit: Eric Abrahamsen <address@hidden>

    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 e718bdf..f11056f 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]