emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/minibuf.c


From: Ken Raeburn
Subject: [Emacs-diffs] Changes to emacs/src/minibuf.c
Date: Tue, 06 Dec 2005 02:39:57 -0500

Index: emacs/src/minibuf.c
diff -c emacs/src/minibuf.c:1.292 emacs/src/minibuf.c:1.293
*** emacs/src/minibuf.c:1.292   Fri Dec  2 13:55:54 2005
--- emacs/src/minibuf.c Tue Dec  6 07:39:57 2005
***************
*** 2116,2131 ****
       ()
  {
    register int i;
!   Lisp_Object val;
  
    /* Allow user to specify null string */
    if (XINT (Fminibuffer_prompt_end ()) == ZV)
      goto exit;
  
    val = Fminibuffer_contents ();
!   if (!NILP (Ftest_completion (val,
!                              Vminibuffer_completion_table,
!                              Vminibuffer_completion_predicate)))
      {
        if (completion_ignore_case)
        { /* Fixup case of the field, if necessary. */
--- 2116,2132 ----
       ()
  {
    register int i;
!   Lisp_Object val, tem;
  
    /* Allow user to specify null string */
    if (XINT (Fminibuffer_prompt_end ()) == ZV)
      goto exit;
  
    val = Fminibuffer_contents ();
!   tem = Ftest_completion (val,
!                         Vminibuffer_completion_table,
!                         Vminibuffer_completion_predicate);
!   if (!NILP (tem))
      {
        if (completion_ignore_case)
        { /* Fixup case of the field, if necessary. */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]