diff lisp/wid-edit.el @ 24317:971fec299b71

(widget-choice-value-create): Use `equal' instead of `eq'.
author Richard M. Stallman <rms@gnu.org>
date Mon, 15 Feb 1999 12:07:01 +0000
parents 9fd3f3cc78c1
children 731dcf8c11dc
line wrap: on
line diff
--- a/lisp/wid-edit.el	Mon Feb 15 10:47:36 1999 +0000
+++ b/lisp/wid-edit.el	Mon Feb 15 12:07:01 1999 +0000
@@ -1947,7 +1947,7 @@
 	(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.