emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 64e037e: Fix to 2fddfb7ce7


From: Eric Abrahamsen
Subject: [Emacs-diffs] master 64e037e: Fix to 2fddfb7ce7
Date: Sun, 22 Oct 2017 19:52:45 -0400 (EDT)

branch: master
commit 64e037eb7d921ca28d7286826f533ef14a37a54c
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 74fad83..58dcd09 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]