From 1468535ed1694af3a245efbbbfc330082a55c2a6 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 15 Feb 1999 12:07:01 +0000 Subject: [PATCH] (widget-choice-value-create): Use `equal' instead of `eq'. --- lisp/wid-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index d7cf8cd210b..43e756b977e 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -1947,7 +1947,7 @@ If END is omitted, it defaults to the length of LIST." (explicit (widget-get widget :explicit-choice)) (explicit-value (widget-get widget :explicit-choice-value)) current) - (if (and explicit (eq value explicit-value)) + (if (and explicit (equal value explicit-value)) (progn ;; If the user specified the choice for this value, ;; respect that choice as long as the value is the same. -- 2.39.2