]> git.pld-linux.org Git - packages/vim.git/commitdiff
obsolete
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 2 Apr 2001 18:28:05 +0000 (18:28 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    5.7.001 -> 1.2
    5.7.002 -> 1.2
    5.7.003 -> 1.2
    5.7.004 -> 1.2

5.7.001 [deleted file]
5.7.002 [deleted file]
5.7.003 [deleted file]
5.7.004 [deleted file]

diff --git a/5.7.001 b/5.7.001
deleted file mode 100644 (file)
index 00c00b9..0000000
--- a/5.7.001
+++ /dev/null
@@ -1,52 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 5.7.001
-Fcc: outbox
-From: Bram Moolenaar <Bram@moolenaar.net>
-------------
-
-Patch 5.7.001
-Problem:    When the current buffer is crypted, and another modified buffer
-           isn't, ":wall" will encrypt the other buffer.
-Solution:   In buf_write() use "buf" instead of "curbuf" to check for the
-           crypt key.
-Files:     src/fileio.c
-
-
-*** ../vim-5.7/src/fileio.c    Sat Jun 24 13:54:27 2000
---- src/fileio.c       Sun Jun 25 20:14:38 2000
-***************
-*** 1857,1865 ****
-       start = end + 1;
-  
-  #ifdef CRYPTV
-!     if (*curbuf->b_p_key)
-      {
-!      crypt_init_keys(curbuf->b_p_key);
-       encrypted = TRUE;
-       /* Write magic number, so that Vim knows that this file is encrypted
-        * when reading it again */
---- 1857,1865 ----
-       start = end + 1;
-  
-  #ifdef CRYPTV
-!     if (*buf->b_p_key)
-      {
-!      crypt_init_keys(buf->b_p_key);
-       encrypted = TRUE;
-       /* Write magic number, so that Vim knows that this file is encrypted
-        * when reading it again */
-*** ../vim-5.7/src/version.c   Sat Jun 24 13:54:21 2000
---- src/version.c      Sun Jun 25 20:14:50 2000
-***************
-*** 439,440 ****
---- 439,442 ----
-  {   /* Add new patch number below this line */
-+ /**/
-+     1,
-  /**/
-
--- 
-In a world without walls and borders, who needs windows and gates?
-
-/-/-- Bram Moolenaar --- Bram@moolenaar.net --- http://www.moolenaar.net --\-\
-\-\-- Vim: http://www.vim.org ---- ICCF Holland: http://www.vim.org/iccf --/-/
diff --git a/5.7.002 b/5.7.002
deleted file mode 100644 (file)
index 9554faa..0000000
--- a/5.7.002
+++ /dev/null
@@ -1,57 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 5.7.002
-Fcc: outbox
-From: Bram Moolenaar <Bram@moolenaar.net>
-------------
-
-Patch 5.7.002
-Problem:    When 'showmode' is set, using "CTRL-O :r file" waits three seconds
-            before displaying the read text. (Wichert Akkerman)
-Solution:   Set "keep_msg" to the file message so that the screen is redrawn
-            before the three seconds wait for displaying the mode message.
-Files:      src/fileio.c
-
-
-*** ../vim-5.7.1/src/fileio.c  Tue Jun 27 20:51:18 2000
---- src/fileio.c       Tue Jun 27 10:22:03 2000
-***************
-*** 966,975 ****
-  #endif
-               keep_msg = msg_trunc_attr(IObuff, FALSE, 0);
-           keep_msg_attr = 0;
-!          if (read_stdin)
-           {
-               /* When reading from stdin, the screen will be cleared next;
-                * keep the message to repeat it later.
-                * Copy the message (truncated) to msg_buf, because IObuff
-                * could be overwritten any time. */
-               STRNCPY(msg_buf, keep_msg, MSG_BUF_LEN);
---- 966,978 ----
-  #endif
-               keep_msg = msg_trunc_attr(IObuff, FALSE, 0);
-           keep_msg_attr = 0;
-!          if (read_stdin || restart_edit != 0)
-           {
-               /* When reading from stdin, the screen will be cleared next;
-                * keep the message to repeat it later.
-+               * When restart_edit is set, keep the message to show it after
-+               * redrawing (otherwise there will be a delay before
-+               * redrawing).
-                * Copy the message (truncated) to msg_buf, because IObuff
-                * could be overwritten any time. */
-               STRNCPY(msg_buf, keep_msg, MSG_BUF_LEN);
-*** ../vim-5.7.1/src/version.c Tue Jun 27 20:51:18 2000
---- src/version.c      Tue Jun 27 20:49:49 2000
-***************
-*** 439,440 ****
---- 439,442 ----
-  {   /* Add new patch number below this line */
-+ /**/
-+     2,
-  /**/
-
--- 
-I have a watch cat! Just break in and she'll watch.
-
-///  Bram Moolenaar     Bram@moolenaar.net     http://www.moolenaar.net  \\\
-\\\  Vim: http://www.vim.org      ICCF Holland: http://iccf-holland.org  ///
diff --git a/5.7.003 b/5.7.003
deleted file mode 100644 (file)
index 2925c0d..0000000
--- a/5.7.003
+++ /dev/null
@@ -1,47 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 5.7.003
-Fcc: outbox
-From: Bram Moolenaar <Bram@moolenaar.net>
-------------
-
-Patch 5.7.003
-Problem:    Searching for "[[:cntrl:]]" doesn't work.
-Solution:   Exclude NUL from the matching characters, it terminates the list.
-Files:     src/regexp.c
-
-
-*** ../vim-5.7.2/src/regexp.c  Wed Jun  7 16:13:32 2000
---- src/regexp.c       Fri Aug  4 21:23:15 2000
-***************
-*** 1211,1217 ****
-                           regc(*regparse++);
-                       else
-                           /* Characters assumed to be 8 bits */
-!                          for (cu = 0; cu <= 255; cu++)
-                               if ((*func)(cu))
-                                   regc(cu);
-                   }
---- 1211,1217 ----
-                           regc(*regparse++);
-                       else
-                           /* Characters assumed to be 8 bits */
-!                          for (cu = 1; cu <= 255; cu++)
-                               if ((*func)(cu))
-                                   regc(cu);
-                   }
-*** ../vim-5.7.2/src/version.c Tue Jun 27 20:54:03 2000
---- src/version.c      Fri Aug  4 21:43:24 2000
-***************
-*** 439,440 ****
---- 439,442 ----
-  {   /* Add new patch number below this line */
-+ /**/
-+     3,
-  /**/
-
--- 
-hundred-and-one symptoms of being an internet addict:
-118. You are on a first-name basis with your ISP's staff.
-
-///  Bram Moolenaar     Bram@moolenaar.net     http://www.moolenaar.net  \\\
-\\\  Vim: http://www.vim.org      ICCF Holland: http://iccf-holland.org  ///
diff --git a/5.7.004 b/5.7.004
deleted file mode 100644 (file)
index 92dd226..0000000
--- a/5.7.004
+++ /dev/null
@@ -1,46 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 5.7.004
-Fcc: outbox
-From: Bram Moolenaar <Bram@moolenaar.net>
-------------
-
-Patch 5.7.004
-Problem:    GTK: When selecting a new font, Vim can crash.
-Solution:   In gui_mch_init_font() unreference the old font, not the new one.
-Files:     src/gui_gtk_x11.c
-
-
-*** ../vim-5.7.3/src/gui_gtk_x11.c     Tue Jun 20 15:08:20 2000
---- src/gui_gtk_x11.c  Sat Aug  5 14:22:57 2000
-***************
-*** 2205,2211 ****
-      }
-  
-      if (gui.norm_font != 0)
-!      gdk_font_unref(font);
-      gui.norm_font = font;
-  #ifdef USE_FONTSET
-      if (font->type == GDK_FONT_FONTSET)
---- 2205,2211 ----
-      }
-  
-      if (gui.norm_font != 0)
-!      gdk_font_unref(gui.norm_font);
-      gui.norm_font = font;
-  #ifdef USE_FONTSET
-      if (font->type == GDK_FONT_FONTSET)
-*** ../vim-5.7.3/src/version.c Fri Aug  4 21:51:08 2000
---- src/version.c      Sat Aug  5 14:23:49 2000
-***************
-*** 439,440 ****
---- 439,442 ----
-  {   /* Add new patch number below this line */
-+ /**/
-+     4,
-  /**/
-
--- 
-I have a watch cat! Just break in and she'll watch.
-
-///  Bram Moolenaar     Bram@moolenaar.net     http://www.moolenaar.net  \\\
-\\\  Vim: http://www.vim.org      ICCF Holland: http://iccf-holland.org  ///
This page took 0.109664 seconds and 4 git commands to generate.