emacs-diffs
[Top][All Lists]
Advanced

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

feature/pkg b7b18f4768: Fix error opening Gnus gmail imap connection


From: Gerd Moellmann
Subject: feature/pkg b7b18f4768: Fix error opening Gnus gmail imap connection
Date: Sun, 23 Oct 2022 03:23:51 -0400 (EDT)

branch: feature/pkg
commit b7b18f47682bf1e09f7ca04bb979f460f227886b
Author: Gerd Möllmann <gerd@gnu.org>
Commit: Gerd Möllmann <gerd@gnu.org>

    Fix error opening Gnus gmail imap connection
    
    The error is caused by comparing names of (possibly) keyword symbols
    with a table of symbols names containing ":" for symbol names.
    
    * src/process.c (set_socket_option): Use LISP_SYMBOL_NAME.
---
 src/process.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/process.c b/src/process.c
index 358899cded..04b466d508 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2859,7 +2859,7 @@ set_socket_option (int s, Lisp_Object opt, Lisp_Object 
val)
 
   CHECK_SYMBOL (opt);
 
-  name = SSDATA (SYMBOL_NAME (opt));
+  name = SSDATA (LISP_SYMBOL_NAME (opt));
   for (sopt = socket_options; sopt->name; sopt++)
     if (strcmp (name, sopt->name) == 0)
       break;



reply via email to

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