home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.2.279 < prev    next >
Encoding:
Internet Message Format  |  2004-02-18  |  2.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.279
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.2.279
  11. Problem:    There is no default choice for a confirm() dialog, now that it is
  12.         possible not to have a default choice.
  13. Solution:   Make the first choice the default choice.
  14. Files:        runtime/doc/eval.txt, src/eval.c
  15.  
  16.  
  17. *** ../vim-6.2.278/runtime/doc/eval.txt    Sun Jan 18 20:50:42 2004
  18. --- runtime/doc/eval.txt    Sun Feb 15 20:29:15 2004
  19. ***************
  20. *** 1,4 ****
  21. ! *eval.txt*      For Vim version 6.2.  Last change: 2004 Jan 18
  22.   
  23.   
  24.             VIM REFERENCE MANUAL    by Bram Moolenaar
  25. --- 1,4 ----
  26. ! *eval.txt*      For Vim version 6.2.  Last change: 2004 Feb 15
  27.   
  28.   
  29.             VIM REFERENCE MANUAL    by Bram Moolenaar
  30. ***************
  31. *** 1113,1119 ****
  32.           The optional {default} argument is the number of the choice
  33.           that is made if the user hits <CR>.  Use 1 to make the first
  34.           choice the default one.  Use 0 to not set a default.  If
  35. !         {default} is omitted, 0 is used.
  36.           The optional {type} argument gives the type of dialog.  This
  37.           is only used for the icon of the Win32 GUI.  It can be one of
  38.           these values: "Error", "Question", "Info", "Warning" or
  39. --- 1115,1121 ----
  40.           The optional {default} argument is the number of the choice
  41.           that is made if the user hits <CR>.  Use 1 to make the first
  42.           choice the default one.  Use 0 to not set a default.  If
  43. !         {default} is omitted, 1 is used.
  44.           The optional {type} argument gives the type of dialog.  This
  45.           is only used for the icon of the Win32 GUI.  It can be one of
  46.           these values: "Error", "Question", "Info", "Warning" or
  47. *** ../vim-6.2.278/src/eval.c    Thu Feb 19 15:28:58 2004
  48. --- src/eval.c    Wed Feb 18 12:00:45 2004
  49. ***************
  50. *** 3628,3634 ****
  51.       char_u    *buttons = NULL;
  52.       char_u    buf[NUMBUFLEN];
  53.       char_u    buf2[NUMBUFLEN];
  54. !     int        def = 0;
  55.       int        type = VIM_GENERIC;
  56.       int        c;
  57.   
  58. --- 3628,3634 ----
  59.       char_u    *buttons = NULL;
  60.       char_u    buf[NUMBUFLEN];
  61.       char_u    buf2[NUMBUFLEN];
  62. !     int        def = 1;
  63.       int        type = VIM_GENERIC;
  64.       int        c;
  65.   
  66. *** ../vim-6.2.278/src/version.c    Thu Feb 19 15:28:58 2004
  67. --- src/version.c    Thu Feb 19 15:30:05 2004
  68. ***************
  69. *** 639,640 ****
  70. --- 639,642 ----
  71.   {   /* Add new patch number below this line */
  72. + /**/
  73. +     279,
  74.   /**/
  75.  
  76. -- 
  77. hundred-and-one symptoms of being an internet addict:
  78. 191. You rate eating establishments not by the quality of the food,
  79.      but by the availability of electrical outlets for your PowerBook.
  80.  
  81.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  82. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  83. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  84.  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
  85.