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.1.377 < prev    next >
Encoding:
Internet Message Format  |  2003-03-08  |  1.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.377
  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.1.377
  11. Problem:    Can't add words to 'lispwords' option.
  12. Solution:   Add P_COMMA and P_NODUP flags. (Haakon Riiser)
  13. Files:        src/option.c
  14.  
  15.  
  16. *** ../vim61.376/src/option.c    Sun Mar  9 15:05:10 2003
  17. --- src/option.c    Sun Mar  9 14:49:28 2003
  18. ***************
  19. *** 1321,1327 ****
  20.                   (char_u *)NULL, PV_NONE,
  21.   #endif
  22.                   {(char_u *)FALSE, (char_u *)0L}},
  23. !     {"lispwords",   "lw",   P_STRING|P_VI_DEF,
  24.   #ifdef FEAT_LISP
  25.                   (char_u *)&p_lispwords, PV_NONE,
  26.                   {(char_u *)LISPWORD_VALUE, (char_u *)0L}
  27. --- 1321,1327 ----
  28.                   (char_u *)NULL, PV_NONE,
  29.   #endif
  30.                   {(char_u *)FALSE, (char_u *)0L}},
  31. !     {"lispwords",   "lw",   P_STRING|P_VI_DEF|P_COMMA|P_NODUP,
  32.   #ifdef FEAT_LISP
  33.                   (char_u *)&p_lispwords, PV_NONE,
  34.                   {(char_u *)LISPWORD_VALUE, (char_u *)0L}
  35. *** ../vim61.376/src/version.c    Sun Mar  9 15:13:49 2003
  36. --- src/version.c    Sun Mar  9 15:14:48 2003
  37. ***************
  38. *** 613,614 ****
  39. --- 613,616 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     377,
  43.   /**/
  44.  
  45. -- 
  46. All good vision statements are created by groups of people with bloated
  47. bladders who would rather be doing anything else.
  48.                 (Scott Adams - The Dilbert principle)
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///          Creator of Vim - Vi IMproved -- http://www.Vim.org          \\\
  52. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  53.  \\\     Help AIDS victims, buy at Amazon -- http://ICCF.nl/click1.html ///
  54.