]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_char_x_menu_prompt): Use an equivalent but more meaningful test.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 15 May 2002 22:34:57 +0000 (22:34 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 15 May 2002 22:34:57 +0000 (22:34 +0000)
(read_char_minibuf_menu_prompt): Fix typo.

src/keyboard.c

index 90b83560cf8e9d2b77dddf65daa8aad284e1e74c..63df3408b7bf80f96e3c8e5bd4c4692dd5390f1c 100644 (file)
@@ -7528,7 +7528,7 @@ read_char_x_menu_prompt (nmaps, maps, prev_event, used_mouse_menu)
     }
 
   /* If we don't have any menus, just read a character normally.  */
-  if (mapno >= nmaps)
+  if (!STRINGP (name))
     return Qnil;
 
 #ifdef HAVE_MENUS
@@ -7639,7 +7639,7 @@ read_char_minibuf_menu_prompt (commandflag, nmaps, maps)
     }
 
   /* If we don't have any menus, just read a character normally.  */
-  if (!STRINGP (name));
+  if (!STRINGP (name))
     return Qnil;
 
   /* Prompt string always starts with map's prompt, and a space.  */