[BACK]Return to cmdline.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / vim

Diff for /src/usr.bin/vim/Attic/cmdline.c between version 1.4 and 1.5

version 1.4, 1996/09/22 01:18:00 version 1.5, 1996/10/14 03:55:08
Line 300 
Line 300 
                                 c = hkmap(c);                                  c = hkmap(c);
 #endif  #endif
                 }                  }
                 if (c == Ctrl('C'))  
                         got_int = FALSE;        /* ignore got_int when CTRL-C was typed here */  
   
                   /*
                    * Ignore got_int when CTRL-C was typed here.
                    * Don't ignore it in :global, we really need to break then.
                    */
                   if (c == Ctrl('C') && !global_busy)
                           got_int = FALSE;
   
                         /* free old command line when finished moving around in the                          /* free old command line when finished moving around in the
                          * history list */                           * history list */
                 if (lookfor && c != K_S_DOWN && c != K_S_UP &&                  if (lookfor && c != K_S_DOWN && c != K_S_UP &&
Line 4529 
Line 4534 
                 flushbuf();                                     /* show one line at a time */                  flushbuf();                                     /* show one line at a time */
                 if (got_int)                  if (got_int)
                 {                  {
                         got_int = FALSE;                          if (!global_busy)
                                   got_int = FALSE;
                         break;                          break;
                 }                  }
         }          }

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5