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.329 < prev    next >
Encoding:
Internet Message Format  |  2004-03-07  |  2.1 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.329
  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.329
  11. Problem:    ":=" does not work Vi compatible. (Antony Scriven)
  12. Solution:   Print the last line number instead of the current line.  Don't
  13.         print "line".
  14. Files:        src/ex_cmds.h, src/ex_docmd.c
  15.  
  16.  
  17. *** ../vim-6.2.328/src/ex_cmds.h    Sun Feb 29 21:06:13 2004
  18. --- src/ex_cmds.h    Mon Mar  8 10:59:47 2004
  19. ***************
  20. *** 887,893 ****
  21.   EX(CMD_lshift,        "<",        ex_operators,
  22.               RANGE|WHOLEFOLD|COUNT|TRLBAR|CMDWIN|MODIFY),
  23.   EX(CMD_equal,        "=",        ex_equal,
  24. !             RANGE|TRLBAR|CMDWIN),
  25.   EX(CMD_rshift,        ">",        ex_operators,
  26.               RANGE|WHOLEFOLD|COUNT|TRLBAR|CMDWIN|MODIFY),
  27.   EX(CMD_at,        "@",        ex_at,
  28. --- 887,893 ----
  29.   EX(CMD_lshift,        "<",        ex_operators,
  30.               RANGE|WHOLEFOLD|COUNT|TRLBAR|CMDWIN|MODIFY),
  31.   EX(CMD_equal,        "=",        ex_equal,
  32. !             RANGE|TRLBAR|DFLALL|CMDWIN),
  33.   EX(CMD_rshift,        ">",        ex_operators,
  34.               RANGE|WHOLEFOLD|COUNT|TRLBAR|CMDWIN|MODIFY),
  35.   EX(CMD_at,        "@",        ex_at,
  36. *** ../vim-6.2.328/src/ex_docmd.c    Sun Feb 29 20:46:43 2004
  37. --- src/ex_docmd.c    Mon Mar  8 11:00:34 2004
  38. ***************
  39. *** 6891,6897 ****
  40.   ex_equal(eap)
  41.       exarg_T    *eap;
  42.   {
  43. !     smsg((char_u *)_("line %ld"), (long)eap->line2);
  44.   }
  45.   
  46.       static void
  47. --- 6889,6895 ----
  48.   ex_equal(eap)
  49.       exarg_T    *eap;
  50.   {
  51. !     smsg((char_u *)"%ld", (long)eap->line2);
  52.   }
  53.   
  54.       static void
  55. *** ../vim-6.2.328/src/version.c    Mon Mar  8 15:12:09 2004
  56. --- src/version.c    Mon Mar  8 15:19:54 2004
  57. ***************
  58. *** 639,640 ****
  59. --- 639,642 ----
  60.   {   /* Add new patch number below this line */
  61. + /**/
  62. +     329,
  63.   /**/
  64.  
  65. -- 
  66. It might look like I'm doing nothing, but at the cellular level
  67. I'm really quite busy.
  68.  
  69.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  70. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  71. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  72.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  73.