2000-08-18 Gerd Moellmann <gerd@gnu.org>
+ * minibuf.c (do_completion): Use EQ instead of != to compare
+ Lisp_Objects.
+
* keyboard.c (kbd_buffer_get_event): Handle the case that the
second half of a HELP_EVENT is found at the start of kbd_buffer.
However, for appearance, the string is rewritten if the case
changes. */
tem = Fcompare_strings (completion, Qnil, Qnil, string, Qnil, Qnil, Qt);
- completedp = (tem != Qt);
+ completedp = !EQ (tem, Qt);
tem = Fstring_equal (completion, string);
if (NILP (tem))