Mercurial > emacs
changeset 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 | 4efecaf73aac |
children | 8c47fccebb58 |
files | lisp/wid-edit.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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.