Author: adamg                        Date: Fri Dec 30 01:24:29 2005 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- new

---- Files affected:
SOURCES:
   6.4.004 (NONE -> 1.1)  (NEW), 6.4.005 (NONE -> 1.1)  (NEW), 6.4.006 (NONE -> 
1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/6.4.004
diff -u /dev/null SOURCES/6.4.004:1.1
--- /dev/null   Fri Dec 30 02:24:29 2005
+++ SOURCES/6.4.004     Fri Dec 30 02:24:24 2005
@@ -0,0 +1,51 @@
+To: [EMAIL PROTECTED]
+Subject: Patch 6.4.004
+Fcc: outbox
+From: Bram Moolenaar <[EMAIL PROTECTED]>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 6.4.004
+Problem:    "go" does not work correctly in combination with 'virtualedit'.
+           (Alojz Motesicky)
+Solution:   Reset the "coladd" field.
+Files:     src/memline.c
+
+
+*** ../vim-6.4.003/src/memline.c       Thu Feb 17 11:02:53 2005
+--- src/memline.c      Thu Dec  1 16:07:04 2005
+***************
+*** 4368,4373 ****
+--- 4368,4376 ----
+      {
+       curwin->w_cursor.lnum = lnum;
+       curwin->w_cursor.col = (colnr_T)boff;
++ # ifdef FEAT_VIRTUALEDIT
++      curwin->w_cursor.coladd = 0;
++ # endif
+       curwin->w_set_curswant = TRUE;
+      }
+      check_cursor();
+*** ../vim-6.4.003/src/version.c       Wed Nov 30 12:38:32 2005
+--- src/version.c      Thu Dec  1 16:07:55 2005
+***************
+*** 643,644 ****
+--- 643,646 ----
+  {   /* Add new patch number below this line */
++ /**/
++     4,
+  /**/
+
+-- 
+       Bravely bold Sir Robin, rode forth from Camelot,
+       He was not afraid to die, Oh Brave Sir Robin,
+       He was not at all afraid to be killed in nasty ways
+       Brave, brave, brave, brave Sir Robin.
+                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
+
+ /// 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://www.ICCF.nl         ///

================================================================
Index: SOURCES/6.4.005
diff -u /dev/null SOURCES/6.4.005:1.1
--- /dev/null   Fri Dec 30 02:24:29 2005
+++ SOURCES/6.4.005     Fri Dec 30 02:24:24 2005
@@ -0,0 +1,52 @@
+To: [EMAIL PROTECTED]
+Subject: Patch 6.4.005
+Fcc: outbox
+From: Bram Moolenaar <[EMAIL PROTECTED]>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 6.4.005
+Problem:    When truncating a message with multi-byte characters the '<' may
+           be written before the buffer. (Pawel S. Veselov)
+Solution:   Don't write the '<' when there is sufficient room.
+Files:     src/message.c
+
+
+*** ../vim-6.4.004/src/message.c       Sun Jun 13 12:15:03 2004
+--- src/message.c      Thu Dec 22 22:26:05 2005
+***************
+*** 718,723 ****
+--- 718,727 ----
+       {
+           int size = vim_strsize(s);
+  
++          /* There may be room anyway when there are multibyte chars. */
++          if (size <= room)
++              return s;
++ 
+           for (n = 0; size >= room; )
+           {
+               size -= (*mb_ptr2cells)(s + n);
+*** ../vim-6.4.004/src/version.c       Thu Dec  1 16:08:05 2005
+--- src/version.c      Thu Dec 22 22:33:27 2005
+***************
+*** 643,644 ****
+--- 643,646 ----
+  {   /* Add new patch number below this line */
++ /**/
++     5,
+  /**/
+
+-- 
+ARTHUR: Old woman!
+DENNIS: Man!
+ARTHUR: Man.  I'm sorry.  Old man, What knight live in that castle over there?
+DENNIS: I'm thirty-seven.
+                 "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
+
+ /// 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://www.ICCF.nl         ///

================================================================
Index: SOURCES/6.4.006
diff -u /dev/null SOURCES/6.4.006:1.1
--- /dev/null   Fri Dec 30 02:24:29 2005
+++ SOURCES/6.4.006     Fri Dec 30 02:24:24 2005
@@ -0,0 +1,64 @@
+To: [EMAIL PROTECTED]
+Subject: Patch 6.4.006
+Fcc: outbox
+From: Bram Moolenaar <[EMAIL PROTECTED]>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=ISO-8859-1
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 6.4.006
+Problem:    ":argedit 1234.c" edits the file ".c". (Karsten Hopp)
+Solution:   Don't accept a count for ":argedit", ":argadd" and ":argdelete".
+Files:     src/ex_cmds.h
+
+
+*** ../vim-6.4.005/src/ex_cmds.h       Mon Aug 30 14:58:51 2004
+--- src/ex_cmds.h      Thu Dec 22 22:29:14 2005
+***************
+*** 109,121 ****
+  EX(CMD_args,         "args",         ex_args,
+                       BANG|FILES|EDITCMD|ARGOPT|TRLBAR),
+  EX(CMD_argadd,               "argadd",       ex_argadd,
+!                      BANG|NEEDARG|RANGE|NOTADR|ZEROR|COUNT|FILES|TRLBAR),
+  EX(CMD_argdelete,    "argdelete",    ex_argdelete,
+!                      BANG|RANGE|NOTADR|COUNT|FILES|TRLBAR),
+  EX(CMD_argdo,                "argdo",        ex_listdo,
+                       BANG|NEEDARG|EXTRA|NOTRLCOM),
+  EX(CMD_argedit,              "argedit",      ex_argedit,
+!                      BANG|NEEDARG|RANGE|NOTADR|COUNT|FILE1|EDITCMD|TRLBAR),
+  EX(CMD_argglobal,    "argglobal",    ex_args,
+                       BANG|FILES|EDITCMD|ARGOPT|TRLBAR),
+  EX(CMD_arglocal,     "arglocal",     ex_args,
+--- 109,121 ----
+  EX(CMD_args,         "args",         ex_args,
+                       BANG|FILES|EDITCMD|ARGOPT|TRLBAR),
+  EX(CMD_argadd,               "argadd",       ex_argadd,
+!                      BANG|NEEDARG|RANGE|NOTADR|ZEROR|FILES|TRLBAR),
+  EX(CMD_argdelete,    "argdelete",    ex_argdelete,
+!                      BANG|RANGE|NOTADR|FILES|TRLBAR),
+  EX(CMD_argdo,                "argdo",        ex_listdo,
+                       BANG|NEEDARG|EXTRA|NOTRLCOM),
+  EX(CMD_argedit,              "argedit",      ex_argedit,
+!                      BANG|NEEDARG|RANGE|NOTADR|FILE1|EDITCMD|TRLBAR),
+  EX(CMD_argglobal,    "argglobal",    ex_args,
+                       BANG|FILES|EDITCMD|ARGOPT|TRLBAR),
+  EX(CMD_arglocal,     "arglocal",     ex_args,
+*** ../vim-6.4.005/src/version.c       Thu Dec 22 22:36:58 2005
+--- src/version.c      Thu Dec 22 22:38:08 2005
+***************
+*** 643,644 ****
+--- 643,646 ----
+  {   /* Add new patch number below this line */
++ /**/
++     6,
+  /**/
+
+-- 
+"Lisp has all the visual appeal of oatmeal with nail clippings thrown in."
+                                                         -- Larry Wall
+
+ /// 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://www.ICCF.nl         ///
================================================================
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to