emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[nongnu] elpa/xml-rpc aa0953b2d4 32/64: Improve detection of structs wit


From: Stefan Kangas
Subject: [nongnu] elpa/xml-rpc aa0953b2d4 32/64: Improve detection of structs with a patch from Jos'h Fuller
Date: Fri, 31 Dec 2021 20:11:06 -0500 (EST)

branch: elpa/xml-rpc
commit aa0953b2d4ef1b983bc54357b56af63cab4309b9
Author: Mark A. Hershberger <mah@everybody.org>
Commit: Mark A. Hershberger <mah@everybody.org>

    Improve detection of structs with a patch from Jos'h Fuller
    
    Thanks to Jos'h Fuller
---
 xml-rpc.el | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/xml-rpc.el b/xml-rpc.el
index 1f7ff47fe9..e5ac30f57e 100644
--- a/xml-rpc.el
+++ b/xml-rpc.el
@@ -8,13 +8,13 @@
 
 ;; Author: Mark A. Hershberger <mah@everybody.org>
 ;; Original Author: Daniel Lundin <daniel@codefactory.se>
-;; Version: 1.6.9
+;; Version: 1.6.10
 ;; Created: May 13 2001
 ;; Keywords: xml rpc network
 ;; URL: http://launchpad.net/xml-rpc-el
-;; Last Modified: <2013-04-23 16:54:08 mah>
+;; Last Modified: <2015-05-26 12:01:14 mah>
 
-(defconst xml-rpc-version "1.6.9"
+(defconst xml-rpc-version "1.6.10"
   "Current version of xml-rpc.el")
 
 ;; This file is NOT (yet) part of GNU Emacs.
@@ -124,6 +124,8 @@
 
 ;;; History:
 
+;; 1.6.10  - Improve detection of structs with a patch from Jos'h Fuller.
+
 ;; 1.6.9   - Add support for the i8 type (64 bit integers)
 ;;         - Quote lambda with #' instead of ' to silence byte compiler
 
@@ -259,7 +261,8 @@ Set it higher to get some info in the *Messages* buffer"
            (setq result (and
                          (setq curval (car-safe vals))
                          (consp curval)
-                         (stringp (car-safe curval))))
+                         (stringp (car-safe curval))
+                         (not (listp (cdr curval)))))
            (setq vals (cdr-safe vals)))
          result)))
 



reply via email to

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