Patch 7.2.437 (after 7.2.407)
Problem:    When "\\\n" appears in the expression result the \n doesn't result
            in a line break. (Andy Wokula)
Solution:   Also replace a \n after a backslash into \r.
Files:      src/regexp.c


*** ../vim-7.2.436/src/regexp.c 2010-03-23 16:27:15.000000000 +0100
--- src/regexp.c        2010-05-21 13:06:00.000000000 +0200
***************
*** 6974,6979 ****
--- 6974,6986 ----
                    else if (*s == '\\' && s[1] != NUL)
                    {
                        ++s;
+                       /* Change NL to CR here too, so that this works:
+                        * :s/abc\\\ndef/\="aaa\\\nbbb"/  on text:
+                        *   abc\
+                        *   def
+                        */
+                       if (*s == NL)
+                           *s = CAR;
                        had_backslash = TRUE;
                    }
                }
*** ../vim-7.2.436/src/version.c        2010-05-16 13:56:01.000000000 +0200
--- src/version.c       2010-05-21 13:07:50.000000000 +0200
***************
*** 683,684 ****
--- 683,686 ----
  {   /* Add new patch number below this line */
+ /**/
+     437,
  /**/

-- 
hundred-and-one symptoms of being an internet addict:
89. In addition to your e-mail address being on your business
    cards you even have your own domain.

 /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net   \\\
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\        download, build and distribute -- http://www.A-A-P.org        ///
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///

-- 
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Raspunde prin e-mail lui