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

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

version 1.3, 1996/10/14 03:55:34 version 1.4, 1996/10/15 08:08:00
Line 46 
Line 46 
  * - Fixed: a ":global" that requires input, could not be broken with CTRL-C.   * - Fixed: a ":global" that requires input, could not be broken with CTRL-C.
  * - Fixed: "1H" and "1L" were off by one line.   * - Fixed: "1H" and "1L" were off by one line.
  * - Included version 1.5 of ctags.   * - Included version 1.5 of ctags.
    * Last minute fixes:
    * - Fixed: When using ^X^C in insert mode and then entering insert mode
    *   again, the ^X mode message is shown when it shouldn't.
    * - Fixed: In GUI, when reading the output from an external command, there
    *   was no check for an error, which could result in an endless loop.
    * - Small correction in src/ctags/ctags.c for MS-DOS.
    * - Fixed for Unix: Would never detect a triple signal.
    * - Removed ":mfstat" command, it's for debugging only.
  *   *
  * Changes between version 4.3 BETA and 4.4 BETA:   * Changes between version 4.3 BETA and 4.4 BETA:
  * - Moved outputting newline from getout() to mch_windexit().  Helps when   * - Moved outputting newline from getout() to mch_windexit().  Helps when
Line 330 
Line 338 
   
 char               *Version = "VIM 4.5";  char               *Version = "VIM 4.5";
 #ifdef HAVE_DATE_TIME  #ifdef HAVE_DATE_TIME
 char               *longVersion = "VIM - Vi IMproved 4.5 (1996 Oct 7, compiled " __DATE__ " " __TIME__ ")";  char               *longVersion = "VIM - Vi IMproved 4.5 (1996 Oct 12, compiled " __DATE__ " " __TIME__ ")";
 #else  #else
 char               *longVersion = "VIM - Vi IMproved 4.5 (1996 Oct 7)";  char               *longVersion = "VIM - Vi IMproved 4.5 (1996 Oct 12)";
 #endif  #endif
   
 static void version_msg __ARGS((char *s));  static void version_msg __ARGS((char *s));

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