summaryrefslogtreecommitdiffstats
path: root/source/ap/vim/patches/7.2.148
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.148
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.148')
-rw-r--r--source/ap/vim/patches/7.2.148145
1 files changed, 0 insertions, 145 deletions
diff --git a/source/ap/vim/patches/7.2.148 b/source/ap/vim/patches/7.2.148
deleted file mode 100644
index 32504997c..000000000
--- a/source/ap/vim/patches/7.2.148
+++ /dev/null
@@ -1,145 +0,0 @@
-To: vim-dev@vim.org
-Subject: Patch 7.2.148
-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.148
-Problem: When searching for "$" while 'hlsearch' is set, highlighting the
- character after the line does not work in the cursor column.
- Also highlighting for Visual mode after the line end when this
- isn't needed. (Markus Heidelberg)
-Solution: Only compare the cursor column in the cursor line. Only highlight
- for Visual selection after the last character when it's needed to
- see where the Visual selection ends.
-Files: src/screen.c
-
-
-*** ../vim-7.2.147/src/screen.c Wed Mar 18 16:26:31 2009
---- src/screen.c Wed Mar 18 17:24:56 2009
-***************
-*** 2889,2896 ****
- }
- else
- tocol = MAXCOL;
-! if (fromcol == tocol) /* do at least one character */
-! tocol = fromcol + 1; /* happens when past end of line */
- area_highlighting = TRUE;
- attr = hl_attr(HLF_I);
- }
---- 2889,2897 ----
- }
- else
- tocol = MAXCOL;
-! /* do at least one character; happens when past end of line */
-! if (fromcol == tocol)
-! tocol = fromcol + 1;
- area_highlighting = TRUE;
- attr = hl_attr(HLF_I);
- }
-***************
-*** 4118,4123 ****
---- 4119,4125 ----
- # endif
- (col < W_WIDTH(wp)))
- && !(noinvcur
-+ && lnum == wp->w_cursor.lnum
- && (colnr_T)vcol == wp->w_virtcol)))
- && lcs_eol_one >= 0)
- {
-***************
-*** 4259,4265 ****
- * preedit_changed and commit. Thus Vim can't set "im_is_active", use
- * im_is_preediting() here. */
- if (xic != NULL
-! && lnum == curwin->w_cursor.lnum
- && (State & INSERT)
- && !p_imdisable
- && im_is_preediting()
---- 4261,4267 ----
- * preedit_changed and commit. Thus Vim can't set "im_is_active", use
- * im_is_preediting() here. */
- if (xic != NULL
-! && lnum == wp->w_cursor.lnum
- && (State & INSERT)
- && !p_imdisable
- && im_is_preediting()
-***************
-*** 4268,4274 ****
- colnr_T tcol;
-
- if (preedit_end_col == MAXCOL)
-! getvcol(curwin, &(curwin->w_cursor), &tcol, NULL, NULL);
- else
- tcol = preedit_end_col;
- if ((long)preedit_start_col <= vcol && vcol < (long)tcol)
---- 4270,4276 ----
- colnr_T tcol;
-
- if (preedit_end_col == MAXCOL)
-! getvcol(curwin, &(wp->w_cursor), &tcol, NULL, NULL);
- else
- tcol = preedit_end_col;
- if ((long)preedit_start_col <= vcol && vcol < (long)tcol)
-***************
-*** 4365,4371 ****
- }
- #endif
- if (lcs_eol == lcs_eol_one
-! && ((area_attr != 0 && vcol == fromcol && c == NUL)
- #ifdef FEAT_SEARCH_EXTRA
- /* highlight 'hlsearch' match at end of line */
- || (prevcol_hl_flag == TRUE
---- 4367,4379 ----
- }
- #endif
- if (lcs_eol == lcs_eol_one
-! && ((area_attr != 0 && vcol == fromcol
-! #ifdef FEAT_VISUAL
-! && (VIsual_mode != Ctrl_V
-! || lnum == VIsual.lnum
-! || lnum == curwin->w_cursor.lnum)
-! #endif
-! && c == NUL)
- #ifdef FEAT_SEARCH_EXTRA
- /* highlight 'hlsearch' match at end of line */
- || (prevcol_hl_flag == TRUE
-***************
-*** 4459,4465 ****
- if (c == NUL)
- {
- #ifdef FEAT_SYN_HL
-! if (eol_hl_off > 0 && vcol - eol_hl_off == (long)wp->w_virtcol)
- {
- /* highlight last char after line */
- --col;
---- 4467,4474 ----
- if (c == NUL)
- {
- #ifdef FEAT_SYN_HL
-! if (eol_hl_off > 0 && vcol - eol_hl_off == (long)wp->w_virtcol
-! && lnum == wp->w_cursor.lnum)
- {
- /* highlight last char after line */
- --col;
-*** ../vim-7.2.147/src/version.c Wed Mar 18 16:26:31 2009
---- src/version.c Wed Mar 18 19:05:37 2009
-***************
-*** 678,679 ****
---- 678,681 ----
- { /* Add new patch number below this line */
-+ /**/
-+ 148,
- /**/
-
---
-hundred-and-one symptoms of being an internet addict:
-239. You think "surfing" is something you do on dry land.
-
- /// 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 ///