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.450 < prev    next >
Encoding:
Internet Message Format  |  2004-04-04  |  3.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.450
  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.450
  11. Problem:    "  #include" and "  #define" are not recognized with the default
  12.         option values for 'include' and 'defined'. (RG Kiran)
  13. Solution:   Adjust the default values to allow white space before the #.
  14. Files:        runtime/doc/options.txt, src/option.c
  15.  
  16.  
  17. *** ../vim-6.2.449/runtime/doc/options.txt    Fri Apr  2 21:06:43 2004
  18. --- runtime/doc/options.txt    Mon Apr  5 19:33:20 2004
  19. ***************
  20. *** 1,4 ****
  21. ! *options.txt*    For Vim version 6.2.  Last change: 2004 Apr 02
  22.   
  23.   
  24.             VIM REFERENCE MANUAL      by Bram Moolenaar
  25. --- 1,4 ----
  26. ! *options.txt*    For Vim version 6.2.  Last change: 2004 Apr 05
  27.   
  28.   
  29.             VIM REFERENCE MANUAL      by Bram Moolenaar
  30. ***************
  31. *** 1814,1820 ****
  32.       'indentexpr'.
  33.   
  34.                           *'define'* *'def'*
  35. ! 'define' 'def'        string    (default "^#\s*define")
  36.               global or local to buffer |global-local|
  37.               {not in Vi}
  38.       Pattern to be used to find a macro definition.    It is a search
  39. --- 1827,1833 ----
  40.       'indentexpr'.
  41.   
  42.                           *'define'* *'def'*
  43. ! 'define' 'def'        string    (default "^\s*#\s*define")
  44.               global or local to buffer |global-local|
  45.               {not in Vi}
  46.       Pattern to be used to find a macro definition.    It is a search
  47. ***************
  48. *** 3284,3290 ****
  49.       methods.  Use 'imdisable' to disable XIM then.
  50.   
  51.                           *'include'* *'inc'*
  52. ! 'include' 'inc'        string    (default "^#\s*include")
  53.               global or local to buffer |global-local|
  54.               {not in Vi}
  55.               {not available when compiled without the
  56. --- 3318,3324 ----
  57.       methods.  Use 'imdisable' to disable XIM then.
  58.   
  59.                           *'include'* *'inc'*
  60. ! 'include' 'inc'        string    (default "^\s*#\s*include")
  61.               global or local to buffer |global-local|
  62.               {not in Vi}
  63.               {not available when compiled without the
  64. *** ../vim-6.2.449/src/option.c    Tue Mar 30 21:58:19 2004
  65. --- src/option.c    Mon Apr  5 19:32:35 2004
  66. ***************
  67. *** 696,702 ****
  68.       {"define",        "def",  P_STRING|P_ALLOCED|P_VI_DEF,
  69.   #ifdef FEAT_FIND_ID
  70.                   (char_u *)&p_def, OPT_BOTH(PV_DEF),
  71. !                 {(char_u *)"^#\\s*define", (char_u *)0L}
  72.   #else
  73.                   (char_u *)NULL, PV_NONE,
  74.                   {(char_u *)NULL, (char_u *)0L}
  75. --- 696,702 ----
  76.       {"define",        "def",  P_STRING|P_ALLOCED|P_VI_DEF,
  77.   #ifdef FEAT_FIND_ID
  78.                   (char_u *)&p_def, OPT_BOTH(PV_DEF),
  79. !                 {(char_u *)"^\\s#\\s*define", (char_u *)0L}
  80.   #else
  81.                   (char_u *)NULL, PV_NONE,
  82.                   {(char_u *)NULL, (char_u *)0L}
  83. ***************
  84. *** 1156,1162 ****
  85.       {"include",        "inc",  P_STRING|P_ALLOCED|P_VI_DEF,
  86.   #ifdef FEAT_FIND_ID
  87.                   (char_u *)&p_inc, OPT_BOTH(PV_INC),
  88. !                 {(char_u *)"^#\\s*include", (char_u *)0L}
  89.   #else
  90.                   (char_u *)NULL, PV_NONE,
  91.                   {(char_u *)0L, (char_u *)0L}
  92. --- 1168,1174 ----
  93.       {"include",        "inc",  P_STRING|P_ALLOCED|P_VI_DEF,
  94.   #ifdef FEAT_FIND_ID
  95.                   (char_u *)&p_inc, OPT_BOTH(PV_INC),
  96. !                 {(char_u *)"^\\s*#\\s*include", (char_u *)0L}
  97.   #else
  98.                   (char_u *)NULL, PV_NONE,
  99.                   {(char_u *)0L, (char_u *)0L}
  100. *** ../vim-6.2.449/src/version.c    Mon Apr  5 19:46:49 2004
  101. --- src/version.c    Mon Apr  5 19:48:19 2004
  102. ***************
  103. *** 639,640 ****
  104. --- 639,642 ----
  105.   {   /* Add new patch number below this line */
  106. + /**/
  107. +     450,
  108.   /**/
  109.  
  110. -- 
  111. Microsoft: "Windows NT 4.0 now has the same user-interface as Windows 95"
  112.     Windows 95: "Press CTRL-ALT-DEL to reboot"
  113. Windows NT 4.0: "Press CTRL-ALT-DEL to login"
  114.  
  115.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  116. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  117. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  118.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  119.