]> git.pld-linux.org Git - packages/vim.git/commitdiff
- (auto)up to 7.3.081 auto/th/vim-7_3_081-1
authorElan Ruusamäe <glen@pld-linux.org>
Thu, 9 Dec 2010 11:18:54 +0000 (11:18 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    7.3.076 -> 1.1
    7.3.077 -> 1.1
    7.3.078 -> 1.1
    7.3.079 -> 1.1
    7.3.080 -> 1.1
    7.3.081 -> 1.1
    vim.spec -> 1.536

7.3.076 [new file with mode: 0644]
7.3.077 [new file with mode: 0644]
7.3.078 [new file with mode: 0644]
7.3.079 [new file with mode: 0644]
7.3.080 [new file with mode: 0644]
7.3.081 [new file with mode: 0644]
vim.spec

diff --git a/7.3.076 b/7.3.076
new file mode 100644 (file)
index 0000000..9ec7db4
--- /dev/null
+++ b/7.3.076
@@ -0,0 +1,203 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 7.3.076
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.076
+Problem:    Clang warnings for dead code.
+Solution:   Remove it. (Carlo Teubner)
+Files:     src/gui_gtk.c, src/if_ruby.c, src/misc2.c, src/netbeans.c,
+           src/spell.c
+
+
+*** ../vim-7.3.075/src/gui_gtk.c       2010-11-24 18:48:08.000000000 +0100
+--- src/gui_gtk.c      2010-12-08 12:25:17.000000000 +0100
+***************
+*** 1798,1804 ****
+      char_u           *repl_text;
+      gboolean         direction_down;
+      SharedFindReplace        *sfr;
+-     int                      rc;
+  
+      flags = (int)(long)data;     /* avoid a lint warning here */
+  
+--- 1798,1803 ----
+***************
+*** 1824,1830 ****
+  
+      repl_text = CONVERT_FROM_UTF8(repl_text);
+      find_text = CONVERT_FROM_UTF8(find_text);
+!     rc = gui_do_findrepl(flags, find_text, repl_text, direction_down);
+      CONVERT_FROM_UTF8_FREE(repl_text);
+      CONVERT_FROM_UTF8_FREE(find_text);
+  }
+--- 1823,1829 ----
+  
+      repl_text = CONVERT_FROM_UTF8(repl_text);
+      find_text = CONVERT_FROM_UTF8(find_text);
+!     gui_do_findrepl(flags, find_text, repl_text, direction_down);
+      CONVERT_FROM_UTF8_FREE(repl_text);
+      CONVERT_FROM_UTF8_FREE(find_text);
+  }
+*** ../vim-7.3.075/src/if_ruby.c       2010-11-24 17:03:34.000000000 +0100
+--- src/if_ruby.c      2010-12-08 12:30:38.000000000 +0100
+***************
+*** 586,594 ****
+       if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
+           return;
+       for (i = eap->line1; i <= eap->line2; i++) {
+!          VALUE line, oldline;
+  
+!          line = oldline = vim_str2rb_enc_str((char *)ml_get(i));
+           rb_lastline_set(line);
+           eval_enc_string_protect((char *) eap->arg, &state);
+           if (state) {
+--- 586,594 ----
+       if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
+           return;
+       for (i = eap->line1; i <= eap->line2; i++) {
+!          VALUE line;
+  
+!          line = vim_str2rb_enc_str((char *)ml_get(i));
+           rb_lastline_set(line);
+           eval_enc_string_protect((char *) eap->arg, &state);
+           if (state) {
+*** ../vim-7.3.075/src/misc2.c 2010-08-15 21:57:32.000000000 +0200
+--- src/misc2.c        2010-12-08 12:42:44.000000000 +0100
+***************
+*** 200,206 ****
+       }
+  #endif
+  
+-      idx = -1;
+       ptr = line;
+       while (col <= wcol && *ptr != NUL)
+       {
+--- 200,205 ----
+***************
+*** 1223,1229 ****
+  #endif
+  
+  /*
+!  * copy a string into newly allocated memory
+   */
+      char_u *
+  vim_strsave(string)
+--- 1222,1228 ----
+  #endif
+  
+  /*
+!  * Copy "string" into newly allocated memory.
+   */
+      char_u *
+  vim_strsave(string)
+***************
+*** 1239,1244 ****
+--- 1238,1249 ----
+      return p;
+  }
+  
++ /*
++  * Copy up to "len" bytes of "string" into newly allocated memory and
++  * terminate with a NUL.
++  * The allocated memory always has size "len + 1", also when "string" is
++  * shorter.
++  */
+      char_u *
+  vim_strnsave(string, len)
+      char_u   *string;
+*** ../vim-7.3.075/src/netbeans.c      2010-12-02 17:09:48.000000000 +0100
+--- src/netbeans.c     2010-12-08 12:43:57.000000000 +0100
+***************
+*** 960,966 ****
+      keyQ_T *key_node = keyHead.next;
+      queue_T *cmd_node = head.next;
+      nbbuf_T buf;
+-     buf_T *bufp;
+      int i;
+  
+      /* free the netbeans buffer list */
+--- 960,965 ----
+***************
+*** 969,975 ****
+       buf = buf_list[i];
+       vim_free(buf.displayname);
+       vim_free(buf.signmap);
+!      if ((bufp=buf.bufp) != NULL)
+       {
+           buf.bufp->b_netbeans_file = FALSE;
+           buf.bufp->b_was_netbeans_file = FALSE;
+--- 968,974 ----
+       buf = buf_list[i];
+       vim_free(buf.displayname);
+       vim_free(buf.signmap);
+!      if (buf.bufp != NULL)
+       {
+           buf.bufp->b_netbeans_file = FALSE;
+           buf.bufp->b_was_netbeans_file = FALSE;
+*** ../vim-7.3.075/src/spell.c 2010-09-29 18:32:47.000000000 +0200
+--- src/spell.c        2010-12-08 12:47:13.000000000 +0100
+***************
+*** 9839,9848 ****
+       {
+           /* be quick for ASCII */
+           if (wp->w_s->b_spell_ismw[*p])
+-          {
+               s = p + 1;              /* skip a mid-word character */
+-              l = MB_BYTE2LEN(*s);
+-          }
+       }
+       else
+       {
+--- 9839,9845 ----
+***************
+*** 9850,9859 ****
+           if (c < 256 ? wp->w_s->b_spell_ismw[c]
+                   : (wp->w_s->b_spell_ismw_mb != NULL
+                          && vim_strchr(wp->w_s->b_spell_ismw_mb, c) != NULL))
+-          {
+               s = p + l;
+-              l = MB_BYTE2LEN(*s);
+-          }
+       }
+  
+       c = mb_ptr2char(s);
+--- 9847,9853 ----
+***************
+*** 13813,13823 ****
+                   su->su_sfmaxscore = cleanup_suggestions(gap,
+                                     su->su_sfmaxscore, SUG_CLEAN_COUNT(su));
+               else
+-              {
+-                  i = su->su_maxscore;
+                   su->su_maxscore = cleanup_suggestions(gap,
+                                       su->su_maxscore, SUG_CLEAN_COUNT(su));
+-              }
+           }
+       }
+      }
+--- 13807,13814 ----
+*** ../vim-7.3.075/src/version.c       2010-12-02 21:44:35.000000000 +0100
+--- src/version.c      2010-12-08 13:10:00.000000000 +0100
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     76,
+  /**/
+
+-- 
+Never enter the boss's office unless it's absolutely necessary.  Every boss
+saves one corner of the desk for useless assignments that are doled out like
+Halloween candy to each visitor.
+                               (Scott Adams - The Dilbert principle)
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
diff --git a/7.3.077 b/7.3.077
new file mode 100644 (file)
index 0000000..c0af4b9
--- /dev/null
+++ b/7.3.077
@@ -0,0 +1,134 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 7.3.077
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.077
+Problem:    When updating crypt of swapfile fails there is no error message.
+           (Carlo Teubner)
+Solution:   Add the error message.
+Files:     src/memline.c
+
+
+*** ../vim-7.3.076/src/memline.c       2010-08-15 21:57:31.000000000 +0200
+--- src/memline.c      2010-12-08 12:39:10.000000000 +0100
+***************
+*** 582,587 ****
+--- 582,590 ----
+           idx = ip->ip_index + 1;         /* go to next index */
+           page_count = 1;
+       }
++ 
++      if (error > 0)
++          EMSG(_("E843: Error while updating swap file crypt"));
+      }
+  
+      mfp->mf_old_key = NULL;
+***************
+*** 2384,2390 ****
+   * Make a copy of the line if necessary.
+   */
+  /*
+!  * get a pointer to a (read-only copy of a) line
+   *
+   * On failure an error message is given and IObuff is returned (to avoid
+   * having to check for error everywhere).
+--- 2387,2393 ----
+   * Make a copy of the line if necessary.
+   */
+  /*
+!  * Return a pointer to a (read-only copy of a) line.
+   *
+   * On failure an error message is given and IObuff is returned (to avoid
+   * having to check for error everywhere).
+***************
+*** 2397,2403 ****
+  }
+  
+  /*
+!  * ml_get_pos: get pointer to position 'pos'
+   */
+      char_u *
+  ml_get_pos(pos)
+--- 2400,2406 ----
+  }
+  
+  /*
+!  * Return pointer to position "pos".
+   */
+      char_u *
+  ml_get_pos(pos)
+***************
+*** 2407,2413 ****
+  }
+  
+  /*
+!  * ml_get_curline: get pointer to cursor line.
+   */
+      char_u *
+  ml_get_curline()
+--- 2410,2416 ----
+  }
+  
+  /*
+!  * Return pointer to cursor line.
+   */
+      char_u *
+  ml_get_curline()
+***************
+*** 2416,2422 ****
+  }
+  
+  /*
+!  * ml_get_cursor: get pointer to cursor position
+   */
+      char_u *
+  ml_get_cursor()
+--- 2419,2425 ----
+  }
+  
+  /*
+!  * Return pointer to cursor position.
+   */
+      char_u *
+  ml_get_cursor()
+***************
+*** 2426,2432 ****
+  }
+  
+  /*
+!  * get a pointer to a line in a specific buffer
+   *
+   * "will_change": if TRUE mark the buffer dirty (chars in the line will be
+   * changed)
+--- 2429,2435 ----
+  }
+  
+  /*
+!  * Return a pointer to a line in a specific buffer
+   *
+   * "will_change": if TRUE mark the buffer dirty (chars in the line will be
+   * changed)
+*** ../vim-7.3.076/src/version.c       2010-12-08 13:11:15.000000000 +0100
+--- src/version.c      2010-12-08 13:15:44.000000000 +0100
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     77,
+  /**/
+
+-- 
+An operatingsystem is just a name you give to the rest of bloating
+idiosyncratic machine-based-features you left out of your editor.
+                       (author unknown)
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
diff --git a/7.3.078 b/7.3.078
new file mode 100644 (file)
index 0000000..ae8a9da
--- /dev/null
+++ b/7.3.078
@@ -0,0 +1,58 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 7.3.078
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.078
+Problem:    Warning for unused variable.
+Solution:   Adjuste #ifdefs.
+Files:     src/ops.c
+
+
+*** ../vim-7.3.077/src/ops.c   2010-12-02 21:43:10.000000000 +0100
+--- src/ops.c  2010-12-08 14:21:48.000000000 +0100
+***************
+*** 2844,2850 ****
+--- 2844,2852 ----
+      char_u           *p;
+      char_u           *pnew;
+      struct block_def bd;
++ #if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
+      int                      did_star = FALSE;
++ #endif
+  
+                                   /* check for read-only register */
+      if (oap->regname != 0 && !valid_yank_reg(oap->regname, TRUE))
+***************
+*** 3127,3133 ****
+--- 3129,3137 ----
+  
+       clip_own_selection(&clip_star);
+       clip_gen_set_selection(&clip_star);
++ # ifdef FEAT_X11
+       did_star = TRUE;
++ # endif
+      }
+  
+  # ifdef FEAT_X11
+*** ../vim-7.3.077/src/version.c       2010-12-08 13:16:58.000000000 +0100
+--- src/version.c      2010-12-08 14:22:42.000000000 +0100
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     78,
+  /**/
+
+-- 
+A)bort, R)etry, D)o it right this time
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
diff --git a/7.3.079 b/7.3.079
new file mode 100644 (file)
index 0000000..493d52f
--- /dev/null
+++ b/7.3.079
@@ -0,0 +1,50 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 7.3.079
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.079
+Problem:    Duplicate lines in makefile.
+Solution:   Remove the lines. (Hong Xu)
+Files:     src/Make_mvc.mak
+
+
+*** ../vim-7.3.078/src/Make_mvc.mak    2010-11-03 21:59:23.000000000 +0100
+--- src/Make_mvc.mak   2010-12-08 14:53:16.000000000 +0100
+***************
+*** 380,388 ****
+  !if "$(_NMAKE_VER)" == "10.00.30319.01"
+  MSVCVER = 10.0
+  !endif
+- !if "$(_NMAKE_VER)" == "9.00.30729.01"
+- MSVCVER = 9.0
+- !endif
+  !endif
+  
+  # Abort bulding VIM if version of VC is unrecognised.
+--- 380,385 ----
+*** ../vim-7.3.078/src/version.c       2010-12-08 14:23:08.000000000 +0100
+--- src/version.c      2010-12-08 14:54:02.000000000 +0100
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     79,
+  /**/
+
+-- 
+login: yes
+password: I don't know, please tell me
+password is incorrect
+login: yes
+password: incorrect
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
diff --git a/7.3.080 b/7.3.080
new file mode 100644 (file)
index 0000000..6cf9f6d
--- /dev/null
+++ b/7.3.080
@@ -0,0 +1,205 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 7.3.080
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.080
+Problem:    Spell doesn't work on VMS.
+Solution:   Use different file names. (Zoltan Bartos, Zoltan Arpadffy)
+Files:     src/spell.c
+
+
+*** ../vim-7.3.079/src/spell.c 2010-12-08 13:11:15.000000000 +0100
+--- src/spell.c        2010-12-08 17:01:13.000000000 +0100
+***************
+*** 327,332 ****
+--- 327,342 ----
+  typedef long idx_T;
+  #endif
+  
++ #ifdef VMS
++ # define SPL_FNAME_TMPL  "%s_%s.spl"
++ # define SPL_FNAME_ADD   "_add."
++ # define SPL_FNAME_ASCII "_ascii."
++ #else
++ # define SPL_FNAME_TMPL  "%s.%s.spl"
++ # define SPL_FNAME_ADD   ".add."
++ # define SPL_FNAME_ASCII ".ascii."
++ #endif
++ 
+  /* Flags used for a word.  Only the lowest byte can be used, the region byte
+   * comes above it. */
+  #define WF_REGION   0x01     /* region byte follows */
+***************
+*** 2471,2484 ****
+        * Find the first spell file for "lang" in 'runtimepath' and load it.
+        */
+       vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5,
+!                                      "spell/%s.%s.spl", lang, spell_enc());
+       r = do_in_runtimepath(fname_enc, FALSE, spell_load_cb, &sl);
+  
+       if (r == FAIL && *sl.sl_lang != NUL)
+       {
+           /* Try loading the ASCII version. */
+           vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5,
+!                                                "spell/%s.ascii.spl", lang);
+           r = do_in_runtimepath(fname_enc, FALSE, spell_load_cb, &sl);
+  
+  #ifdef FEAT_AUTOCMD
+--- 2481,2504 ----
+        * Find the first spell file for "lang" in 'runtimepath' and load it.
+        */
+       vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5,
+! #ifdef VMS
+!                                      "spell/%s_%s.spl",
+! #else
+!                                      "spell/%s.%s.spl",
+! #endif
+!                                                         lang, spell_enc());
+       r = do_in_runtimepath(fname_enc, FALSE, spell_load_cb, &sl);
+  
+       if (r == FAIL && *sl.sl_lang != NUL)
+       {
+           /* Try loading the ASCII version. */
+           vim_snprintf((char *)fname_enc, sizeof(fname_enc) - 5,
+! #ifdef VMS
+!                                                "spell/%s_ascii.spl",
+! #else
+!                                                "spell/%s.ascii.spl",
+! #endif
+!                                                                      lang);
+           r = do_in_runtimepath(fname_enc, FALSE, spell_load_cb, &sl);
+  
+  #ifdef FEAT_AUTOCMD
+***************
+*** 2496,2502 ****
+  
+      if (r == FAIL)
+      {
+!      smsg((char_u *)_("Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""),
+                                                    lang, spell_enc(), lang);
+      }
+      else if (sl.sl_slang != NULL)
+--- 2516,2527 ----
+  
+      if (r == FAIL)
+      {
+!      smsg((char_u *)
+! #ifdef VMS
+!      _("Warning: Cannot find word list \"%s_%s.spl\" or \"%s_ascii.spl\""),
+! #else
+!      _("Warning: Cannot find word list \"%s.%s.spl\" or \"%s.ascii.spl\""),
+! #endif
+                                                    lang, spell_enc(), lang);
+      }
+      else if (sl.sl_slang != NULL)
+***************
+*** 2530,2536 ****
+  int_wordlist_spl(fname)
+      char_u       *fname;
+  {
+!     vim_snprintf((char *)fname, MAXPATHL, "%s.%s.spl",
+                                                 int_wordlist, spell_enc());
+  }
+  
+--- 2555,2561 ----
+  int_wordlist_spl(fname)
+      char_u       *fname;
+  {
+!     vim_snprintf((char *)fname, MAXPATHL, SPL_FNAME_TMPL,
+                                                 int_wordlist, spell_enc());
+  }
+  
+***************
+*** 2785,2792 ****
+       if (lp->sl_fname == NULL)
+           goto endFAIL;
+  
+!      /* Check for .add.spl. */
+!      lp->sl_add = strstr((char *)gettail(fname), ".add.") != NULL;
+      }
+      else
+       lp = old_lp;
+--- 2810,2817 ----
+       if (lp->sl_fname == NULL)
+           goto endFAIL;
+  
+!      /* Check for .add.spl (_add.spl for VMS). */
+!      lp->sl_add = strstr((char *)gettail(fname), SPL_FNAME_ADD) != NULL;
+      }
+      else
+       lp = old_lp;
+***************
+*** 9109,9116 ****
+           /* For ":mkspell path/vim" output file is "path/vim.latin1.spl". */
+           innames = &fnames[0];
+           incount = 1;
+!          vim_snprintf((char *)wfname, sizeof(wfname), "%s.%s.spl", fnames[0],
+!                           spin.si_ascii ? (char_u *)"ascii" : spell_enc());
+       }
+       else if (len > 4 && STRCMP(fnames[0] + len - 4, ".spl") == 0)
+       {
+--- 9134,9141 ----
+           /* For ":mkspell path/vim" output file is "path/vim.latin1.spl". */
+           innames = &fnames[0];
+           incount = 1;
+!          vim_snprintf((char *)wfname, sizeof(wfname), SPL_FNAME_TMPL,
+!                fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc());
+       }
+       else if (len > 4 && STRCMP(fnames[0] + len - 4, ".spl") == 0)
+       {
+***************
+*** 9119,9133 ****
+       }
+       else
+           /* Name should be language, make the file name from it. */
+!          vim_snprintf((char *)wfname, sizeof(wfname), "%s.%s.spl", fnames[0],
+!                           spin.si_ascii ? (char_u *)"ascii" : spell_enc());
+  
+       /* Check for .ascii.spl. */
+!      if (strstr((char *)gettail(wfname), ".ascii.") != NULL)
+           spin.si_ascii = TRUE;
+  
+       /* Check for .add.spl. */
+!      if (strstr((char *)gettail(wfname), ".add.") != NULL)
+           spin.si_add = TRUE;
+      }
+  
+--- 9144,9158 ----
+       }
+       else
+           /* Name should be language, make the file name from it. */
+!          vim_snprintf((char *)wfname, sizeof(wfname), SPL_FNAME_TMPL,
+!                fnames[0], spin.si_ascii ? (char_u *)"ascii" : spell_enc());
+  
+       /* Check for .ascii.spl. */
+!      if (strstr((char *)gettail(wfname), SPL_FNAME_ASCII) != NULL)
+           spin.si_ascii = TRUE;
+  
+       /* Check for .add.spl. */
+!      if (strstr((char *)gettail(wfname), SPL_FNAME_ADD) != NULL)
+           spin.si_add = TRUE;
+      }
+  
+*** ../vim-7.3.079/src/version.c       2010-12-08 14:54:58.000000000 +0100
+--- src/version.c      2010-12-08 16:58:03.000000000 +0100
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     80,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+5. You find yourself brainstorming for new subjects to search.
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
diff --git a/7.3.081 b/7.3.081
new file mode 100644 (file)
index 0000000..635b9b5
--- /dev/null
+++ b/7.3.081
@@ -0,0 +1,84 @@
+To: vim_dev@googlegroups.com
+Subject: Patch 7.3.081
+Fcc: outbox
+From: Bram Moolenaar <Bram@moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.081
+Problem:    Non-printable characters in 'statusline' cause trouble. (ZyX)
+Solution:   Use transstr(). (partly by Caio Ariede)
+Files:     src/screen.c
+
+
+*** ../vim-7.3.080/src/screen.c        2010-08-15 21:57:32.000000000 +0200
+--- src/screen.c       2010-12-08 19:27:20.000000000 +0100
+***************
+*** 3405,3413 ****
+  # endif
+                  )
+               {
+!                  int_u       text_sign;
+  # ifdef FEAT_SIGN_ICONS
+!                  int_u       icon_sign;
+  # endif
+  
+                   /* Draw two cells with the sign value or blank. */
+--- 3405,3413 ----
+  # endif
+                  )
+               {
+!                  int text_sign;
+  # ifdef FEAT_SIGN_ICONS
+!                  int icon_sign;
+  # endif
+  
+                   /* Draw two cells with the sign value or blank. */
+***************
+*** 6522,6529 ****
+                               stl, use_sandbox,
+                               fillchar, maxwidth, hltab, tabtab);
+      vim_free(stl);
+-     len = (int)STRLEN(buf);
+  
+      while (width < maxwidth && len < (int)sizeof(buf) - 1)
+      {
+  #ifdef FEAT_MBYTE
+--- 6522,6538 ----
+                               stl, use_sandbox,
+                               fillchar, maxwidth, hltab, tabtab);
+      vim_free(stl);
+  
++     /* Make all characters printable. */
++     p = transstr(buf);
++     if (p != NULL)
++     {
++      vim_strncpy(buf, p, sizeof(buf) - 1);
++      vim_free(p);
++     }
++ 
++     /* fill up with "fillchar" */
++     len = (int)STRLEN(buf);
+      while (width < maxwidth && len < (int)sizeof(buf) - 1)
+      {
+  #ifdef FEAT_MBYTE
+*** ../vim-7.3.080/src/version.c       2010-12-08 17:09:27.000000000 +0100
+--- src/version.c      2010-12-08 19:31:40.000000000 +0100
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     81,
+  /**/
+
+-- 
+hundred-and-one symptoms of being an internet addict:
+6. You refuse to go to a vacation spot with no electricity and no phone lines.
+
+ /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
index 19e845466b585bb1f97891260c47d4d722c60d74..d984e9a51ad6d555efcf745ae40074db8f379ba7 100644 (file)
--- a/vim.spec
+++ b/vim.spec
@@ -27,7 +27,7 @@
 # curl -s ftp://ftp.vim.org/pub/editors/vim/patches/7.3/MD5SUMS | grep -vF .gz | tail -n1 | awk '{print $2}'
 
 %define                ver             7.3
-%define                patchlevel      075
+%define                patchlevel      081
 %define                rel                     1
 Summary:       Vi IMproved - a Vi clone
 Summary(de.UTF-8):     VIsual editor iMproved
This page took 0.278914 seconds and 4 git commands to generate.