|
Karsten Hopp |
558fd0 |
To: vim-dev@vim.org
|
|
Karsten Hopp |
558fd0 |
Subject: patch 7.1.035
|
|
Karsten Hopp |
558fd0 |
Fcc: outbox
|
|
Karsten Hopp |
558fd0 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
558fd0 |
Mime-Version: 1.0
|
|
Karsten Hopp |
558fd0 |
Content-Type: text/plain; charset=ISO-8859-1
|
|
Karsten Hopp |
558fd0 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
558fd0 |
------------
|
|
Karsten Hopp |
558fd0 |
|
|
Karsten Hopp |
558fd0 |
Patch 7.1.035
|
|
Karsten Hopp |
558fd0 |
Problem: After ":s/./&/#" all listed lines have a line number. (Yakov
|
|
Karsten Hopp |
558fd0 |
Lerner)
|
|
Karsten Hopp |
558fd0 |
Solution: Reset the line number flag when not using the "&" flag.
|
|
Karsten Hopp |
558fd0 |
Files: src/ex_cmds.c
|
|
Karsten Hopp |
558fd0 |
|
|
Karsten Hopp |
558fd0 |
|
|
Karsten Hopp |
558fd0 |
*** ../vim-7.1.034/src/ex_cmds.c Tue Jul 10 17:25:20 2007
|
|
Karsten Hopp |
558fd0 |
--- src/ex_cmds.c Sat Jul 14 14:39:38 2007
|
|
Karsten Hopp |
558fd0 |
***************
|
|
Karsten Hopp |
558fd0 |
*** 4316,4321 ****
|
|
Karsten Hopp |
558fd0 |
--- 4316,4322 ----
|
|
Karsten Hopp |
558fd0 |
do_error = TRUE;
|
|
Karsten Hopp |
558fd0 |
do_print = FALSE;
|
|
Karsten Hopp |
558fd0 |
do_count = FALSE;
|
|
Karsten Hopp |
558fd0 |
+ do_number = FALSE;
|
|
Karsten Hopp |
558fd0 |
do_ic = 0;
|
|
Karsten Hopp |
558fd0 |
}
|
|
Karsten Hopp |
558fd0 |
while (*cmd)
|
|
Karsten Hopp |
558fd0 |
*** ../vim-7.1.034/src/version.c Tue Jul 24 10:44:10 2007
|
|
Karsten Hopp |
558fd0 |
--- src/version.c Tue Jul 24 11:15:09 2007
|
|
Karsten Hopp |
558fd0 |
***************
|
|
Karsten Hopp |
558fd0 |
*** 668,669 ****
|
|
Karsten Hopp |
558fd0 |
--- 668,671 ----
|
|
Karsten Hopp |
558fd0 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
558fd0 |
+ /**/
|
|
Karsten Hopp |
558fd0 |
+ 35,
|
|
Karsten Hopp |
558fd0 |
/**/
|
|
Karsten Hopp |
558fd0 |
|
|
Karsten Hopp |
558fd0 |
--
|
|
Karsten Hopp |
558fd0 |
The startling truth finally became apparent, and it was this: Numbers
|
|
Karsten Hopp |
558fd0 |
written on restaurant checks within the confines of restaurants do not follow
|
|
Karsten Hopp |
558fd0 |
the same mathematical laws as numbers written on any other pieces of paper in
|
|
Karsten Hopp |
558fd0 |
any other parts of the Universe. This single statement took the scientific
|
|
Karsten Hopp |
558fd0 |
world by storm. So many mathematical conferences got held in such good
|
|
Karsten Hopp |
558fd0 |
restaurants that many of the finest minds of a generation died of obesity and
|
|
Karsten Hopp |
558fd0 |
heart failure, and the science of mathematics was put back by years.
|
|
Karsten Hopp |
558fd0 |
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
|
|
Karsten Hopp |
558fd0 |
|
|
Karsten Hopp |
558fd0 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
558fd0 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
558fd0 |
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
|
Karsten Hopp |
558fd0 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|