summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/patches/7.2.103
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2011-04-25 13:37:00 +0000
committer Eric Hameleers <alien@slackware.com>2018-05-31 22:45:18 +0200
commit75a4a592e5ccda30715f93563d741b83e0dcf39e (patch)
tree502f745607e77a2c4386ad38d818ddcafe81489c /source/ap/vim/patches/7.2.103
parentb76270bf9e6dd375e495fec92140a79a79415d27 (diff)
downloadcurrent-75a4a592e5ccda30715f93563d741b83e0dcf39e.tar.gz
current-75a4a592e5ccda30715f93563d741b83e0dcf39e.tar.xz
Slackware 13.37slackware-13.37
Mon Apr 25 13:37:00 UTC 2011 Slackware 13.37 x86_64 stable is released! Thanks to everyone who pitched in on this release: the Slackware team, the folks producing upstream code, and linuxquestions.org for providing a great forum for collaboration and testing. The ISOs are off to be replicated, a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. Please consider supporting the Slackware project by picking up a copy from store.slackware.com. We're taking pre-orders now, and offer a discount if you sign up for a subscription. As always, thanks to the Slackware community for testing, suggestions, and feedback. :-) Have fun!
Diffstat (limited to 'source/ap/vim/patches/7.2.103')
-rw-r--r--source/ap/vim/patches/7.2.103216
1 files changed, 0 insertions, 216 deletions
diff --git a/source/ap/vim/patches/7.2.103 b/source/ap/vim/patches/7.2.103
deleted file mode 100644
index 25a513a75..000000000
--- a/source/ap/vim/patches/7.2.103
+++ /dev/null
@@ -1,216 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 7.2.103
-Fcc: outbox
-From: Bram Moolenaar <Bram@moolenaar.net>
-Mime-Version: 1.0
-Content-Type: text/plain; charset=ISO-8859-1
-Content-Transfer-Encoding: 8bit
-------------
-
-Patch 7.2.103
-Problem: When 'bomb' is changed the window title is updated to show/hide a
- "+", but the tab page label isn't. (Patrick Texier)
-Solution: Set "redraw_tabline" in most places where "need_maketitle" is set.
- (partly by Lech Lorens)
-Files: src/option.c
-
-
-*** ../vim-7.2.102/src/option.c Wed Feb 4 17:27:50 2009
---- src/option.c Wed Feb 4 17:40:02 2009
-***************
-*** 5268,5273 ****
---- 5268,5288 ----
- }
- #endif
-
-+ #ifdef FEAT_TITLE
-+ static void redraw_titles __ARGS((void));
-+
-+ /*
-+ * Redraw the window title and/or tab page text later.
-+ */
-+ static void redraw_titles()
-+ {
-+ need_maketitle = TRUE;
-+ # ifdef FEAT_WINDOWS
-+ redraw_tabline = TRUE;
-+ # endif
-+ }
-+ #endif
-+
- /*
- * Set a string option to a new value (without checking the effect).
- * The string is copied into allocated memory.
-***************
-*** 5672,5678 ****
- {
- # ifdef FEAT_TITLE
- /* May show a "+" in the title now. */
-! need_maketitle = TRUE;
- # endif
- /* Add 'fileencoding' to the swap file. */
- ml_setflags(curbuf);
---- 5687,5693 ----
- {
- # ifdef FEAT_TITLE
- /* May show a "+" in the title now. */
-! redraw_titles();
- # endif
- /* Add 'fileencoding' to the swap file. */
- ml_setflags(curbuf);
-***************
-*** 5691,5697 ****
- {
- errmsg = mb_init();
- # ifdef FEAT_TITLE
-! need_maketitle = TRUE;
- # endif
- }
- }
---- 5706,5712 ----
- {
- errmsg = mb_init();
- # ifdef FEAT_TITLE
-! redraw_titles();
- # endif
- }
- }
-***************
-*** 5800,5806 ****
- else
- curbuf->b_p_tx = FALSE;
- #ifdef FEAT_TITLE
-! need_maketitle = TRUE;
- #endif
- /* update flag in swap file */
- ml_setflags(curbuf);
---- 5815,5821 ----
- else
- curbuf->b_p_tx = FALSE;
- #ifdef FEAT_TITLE
-! redraw_titles();
- #endif
- /* update flag in swap file */
- ml_setflags(curbuf);
-***************
-*** 7127,7148 ****
- curbuf->b_did_warn = FALSE;
-
- #ifdef FEAT_TITLE
-! need_maketitle = TRUE;
- #endif
- }
-
- #ifdef FEAT_TITLE
- /* when 'modifiable' is changed, redraw the window title */
- else if ((int *)varp == &curbuf->b_p_ma)
-! need_maketitle = TRUE;
- /* when 'endofline' is changed, redraw the window title */
- else if ((int *)varp == &curbuf->b_p_eol)
-! need_maketitle = TRUE;
-! #ifdef FEAT_MBYTE
-! /* when 'bomb' is changed, redraw the window title */
- else if ((int *)varp == &curbuf->b_p_bomb)
-! need_maketitle = TRUE;
-! #endif
- #endif
-
- /* when 'bin' is set also set some other options */
---- 7142,7169 ----
- curbuf->b_did_warn = FALSE;
-
- #ifdef FEAT_TITLE
-! redraw_titles();
- #endif
- }
-
- #ifdef FEAT_TITLE
- /* when 'modifiable' is changed, redraw the window title */
- else if ((int *)varp == &curbuf->b_p_ma)
-! {
-! redraw_titles();
-! }
- /* when 'endofline' is changed, redraw the window title */
- else if ((int *)varp == &curbuf->b_p_eol)
-! {
-! redraw_titles();
-! }
-! # ifdef FEAT_MBYTE
-! /* when 'bomb' is changed, redraw the window title and tab page text */
- else if ((int *)varp == &curbuf->b_p_bomb)
-! {
-! redraw_titles();
-! }
-! # endif
- #endif
-
- /* when 'bin' is set also set some other options */
-***************
-*** 7150,7156 ****
- {
- set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
- #ifdef FEAT_TITLE
-! need_maketitle = TRUE;
- #endif
- }
-
---- 7171,7177 ----
- {
- set_options_bin(old_value, curbuf->b_p_bin, opt_flags);
- #ifdef FEAT_TITLE
-! redraw_titles();
- #endif
- }
-
-***************
-*** 7301,7307 ****
- if (!value)
- save_file_ff(curbuf); /* Buffer is unchanged */
- #ifdef FEAT_TITLE
-! need_maketitle = TRUE;
- #endif
- #ifdef FEAT_AUTOCMD
- modified_was_set = value;
---- 7322,7328 ----
- if (!value)
- save_file_ff(curbuf); /* Buffer is unchanged */
- #ifdef FEAT_TITLE
-! redraw_titles();
- #endif
- #ifdef FEAT_AUTOCMD
- modified_was_set = value;
-***************
-*** 7736,7742 ****
- newFoldLevel();
- }
-
-! /* 'foldminlevel' */
- else if (pp == &curwin->w_p_fml)
- {
- foldUpdateAll(curwin);
---- 7757,7763 ----
- newFoldLevel();
- }
-
-! /* 'foldminlines' */
- else if (pp == &curwin->w_p_fml)
- {
- foldUpdateAll(curwin);
-*** ../vim-7.2.102/src/version.c Thu Feb 5 20:47:14 2009
---- src/version.c Wed Feb 11 11:32:20 2009
-***************
-*** 678,679 ****
---- 678,681 ----
- { /* Add new patch number below this line */
-+ /**/
-+ 103,
- /**/
-
---
-hundred-and-one symptoms of being an internet addict:
-73. You give your dog used motherboards instead of bones
-
- /// Bram Moolenaar -- Bram@Moolenaar.net -- 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 ///