Patch 7.4.408

已查看 44 次
跳至第一个未读帖子

Bram Moolenaar

未读,
2014年8月16日 12:37:122014/8/16
收件人 vim...@googlegroups.com

Patch 7.4.408
Problem: Visual block insert breaks a multi-byte character.
Solution: Calculate the position properly. (Yasuhiro Matsumoto)
Files: src/ops.c, src/testdir/test_utf8.in, src/testdir/test_utf8.ok,
src/testdir/Make_amiga.mak, src/testdir/Make_dos.mak,
src/testdir/Make_ming.mak, src/testdir/Make_os2.mak,
src/testdir/Make_vms.mms, src/testdir/Makefile


*** ../vim-7.4.407/src/ops.c 2014-08-06 18:17:03.475147780 +0200
--- src/ops.c 2014-08-16 18:33:34.625999952 +0200
***************
*** 609,614 ****
--- 609,634 ----
}
}

+ #ifdef FEAT_MBYTE
+ if (has_mbyte && spaces > 0)
+ {
+ /* Avoid starting halfway a multi-byte character. */
+ if (b_insert)
+ {
+ int off = (*mb_head_off)(oldp, oldp + offset + spaces);
+ spaces -= off;
+ count -= off;
+ }
+ else
+ {
+ int off = (*mb_off_next)(oldp, oldp + offset);
+ offset += off;
+ spaces = 0;
+ count = 0;
+ }
+ }
+ #endif
+
newp = alloc_check((unsigned)(STRLEN(oldp)) + s_len + count + 1);
if (newp == NULL)
continue;
*** ../vim-7.4.407/src/testdir/test_utf8.in 2014-08-16 18:35:44.853995229 +0200
--- src/testdir/test_utf8.in 2014-08-16 18:25:02.310018533 +0200
***************
*** 0 ****
--- 1,18 ----
+ Tests for Unicode manipulations vim: set ft=vim :
+
+ STARTTEST
+ :so small.vim
+ :set encoding=utf-8
+ :" Visual block Insert adjusts for multi-byte char
+ :new
+ :call setline(1, ["aaa", "あああ", "bbb"])
+ :exe ":norm! gg0l\<C-V>jjIx\<Esc>"
+ :let r = getline(1, '$')
+ :
+ :bwipeout!
+ :$put=r
+ :call garbagecollect(1)
+ :/^start:/,$wq! test.out
+ ENDTEST
+
+ start:
*** ../vim-7.4.407/src/testdir/test_utf8.ok 2014-08-16 18:35:44.857995229 +0200
--- src/testdir/test_utf8.ok 2014-08-16 18:25:35.354017334 +0200
***************
*** 0 ****
--- 1,4 ----
+ start:
+ axaa
+ xあああ
+ bxbb
*** ../vim-7.4.407/src/testdir/Make_amiga.mak 2014-07-30 16:00:45.547553496 +0200
--- src/testdir/Make_amiga.mak 2014-08-16 18:28:17.694011447 +0200
***************
*** 38,50 ****
test104.out test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
- test_listlbr.out \
- test_listlbr_utf8.out \
- test_qf_title.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_options.out

.SUFFIXES: .in .out

--- 38,51 ----
test104.out test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_listlbr.out \
! test_listlbr_utf8.out \
! test_options.out \
! test_qf_title.out \
! test_utf8.out

.SUFFIXES: .in .out

***************
*** 170,179 ****
test107.out: test107.in
test_autoformat_join.out: test_autoformat_join.in
test_breakindent.out: test_breakindent.in
- test_listlbr.out: test_listlbr.in
- test_listlbr_utf8.out: test_listlbr_utf8.in
- test_qf_title.out: test_qf_title.in
test_changelist.out: test_changelist.in
test_eval.out: test_eval.in
test_insertcount.out: test_insertcount.in
test_options.out: test_options.in
--- 171,181 ----
test107.out: test107.in
test_autoformat_join.out: test_autoformat_join.in
test_breakindent.out: test_breakindent.in
test_changelist.out: test_changelist.in
test_eval.out: test_eval.in
test_insertcount.out: test_insertcount.in
+ test_listlbr.out: test_listlbr.in
+ test_listlbr_utf8.out: test_listlbr_utf8.in
test_options.out: test_options.in
+ test_qf_title.out: test_qf_title.in
+ test_utf8.out: test_utf8.in
*** ../vim-7.4.407/src/testdir/Make_dos.mak 2014-07-30 16:00:45.547553496 +0200
--- src/testdir/Make_dos.mak 2014-08-16 18:28:37.122010742 +0200
***************
*** 37,49 ****
test105.out test106.out test107.out\
test_autoformat_join.out \
test_breakindent.out \
- test_listlbr.out \
- test_listlbr_utf8.out \
- test_qf_title.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_options.out

SCRIPTS32 = test50.out test70.out

--- 37,50 ----
test105.out test106.out test107.out\
test_autoformat_join.out \
test_breakindent.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_listlbr.out \
! test_listlbr_utf8.out \
! test_options.out \
! test_qf_title.out \
! test_utf8.out

SCRIPTS32 = test50.out test70.out

*** ../vim-7.4.407/src/testdir/Make_ming.mak 2014-07-30 16:00:45.547553496 +0200
--- src/testdir/Make_ming.mak 2014-08-16 18:28:56.438010041 +0200
***************
*** 57,69 ****
test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
- test_listlbr.out \
- test_listlbr_utf8.out \
- test_qf_title.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_options.out

SCRIPTS32 = test50.out test70.out

--- 57,70 ----
test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_listlbr.out \
! test_listlbr_utf8.out \
! test_options.out \
! test_qf_title.out \
! test_utf8.out

SCRIPTS32 = test50.out test70.out

*** ../vim-7.4.407/src/testdir/Make_os2.mak 2014-07-30 16:00:45.547553496 +0200
--- src/testdir/Make_os2.mak 2014-08-16 18:29:26.962008934 +0200
***************
*** 38,51 ****
test100.out test101.out test102.out test103.out test104.out \
test105.out test106.out test107.out \
test_autoformat_join.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
- test_breakindent.out \
test_listlbr.out \
test_listlbr_utf8.out \
test_qf_title.out \
! test_options.out

.SUFFIXES: .in .out

--- 38,52 ----
test100.out test101.out test102.out test103.out test104.out \
test105.out test106.out test107.out \
test_autoformat_join.out \
+ test_breakindent.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
test_listlbr.out \
test_listlbr_utf8.out \
+ test_options.out \
test_qf_title.out \
! test_utf8.out

.SUFFIXES: .in .out

*** ../vim-7.4.407/src/testdir/Make_vms.mms 2014-07-30 16:00:45.547553496 +0200
--- src/testdir/Make_vms.mms 2014-08-16 18:29:42.702008364 +0200
***************
*** 4,10 ****
# Authors: Zoltan Arpadffy, <arpa...@polarhome.com>
# Sandor Kopanyi, <sandor....@mailbox.hu>
#
! # Last change: 2014 Jul 30
#
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
# Edit the lines in the Configuration section below to select.
--- 4,10 ----
# Authors: Zoltan Arpadffy, <arpa...@polarhome.com>
# Sandor Kopanyi, <sandor....@mailbox.hu>
#
! # Last change: 2014 Aug 16
#
# This has been tested on VMS 6.2 to 8.3 on DEC Alpha, VAX and IA64.
# Edit the lines in the Configuration section below to select.
***************
*** 98,110 ****
test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
- test_listlbr.out \
- test_listlbr_utf8.out \
- test_qf_title.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_options.out

# Known problems:
# test17: ?
--- 98,111 ----
test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_listlbr.out \
! test_listlbr_utf8.out \
! test_options.out \
! test_qf_title.out \
! test_utf8.out

# Known problems:
# test17: ?
*** ../vim-7.4.407/src/testdir/Makefile 2014-07-30 16:00:45.547553496 +0200
--- src/testdir/Makefile 2014-08-16 18:30:13.254007256 +0200
***************
*** 35,47 ****
test104.out test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
- test_listlbr.out \
- test_listlbr_utf8.out \
- test_qf_title.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_options.out

SCRIPTS_GUI = test16.out

--- 35,48 ----
test104.out test105.out test106.out test107.out \
test_autoformat_join.out \
test_breakindent.out \
test_changelist.out \
test_eval.out \
test_insertcount.out \
! test_listlbr.out \
! test_listlbr_utf8.out \
! test_options.out \
! test_qf_title.out \
! test_utf8.out

SCRIPTS_GUI = test16.out

*** ../vim-7.4.407/src/version.c 2014-08-16 18:13:00.082044726 +0200
--- src/version.c 2014-08-16 18:35:52.937994936 +0200
***************
*** 743,744 ****
--- 743,746 ----
{ /* Add new patch number below this line */
+ /**/
+ 408,
/**/

--
What a wonderfully exciting cough! Do you mind if I join you?
-- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"

/// Bram Moolenaar -- Br...@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 ///

Christian Brabandt

未读,
2014年8月16日 13:43:472014/8/16
收件人 vim...@googlegroups.com
On Sa, 16 Aug 2014, Bram Moolenaar wrote:

> Patch 7.4.408
Note, test_utf8.in is missing.

Best,
Christian
--
Tugend ist zur Energie gewordene Vernunft.
-- Friedrich Schlegel

Bram Moolenaar

未读,
2014年8月16日 13:45:412014/8/16
收件人 Christian Brabandt、vim...@googlegroups.com
Oops, forgot "hg addremove".

--
"You know, it's at times like this when I'm trapped in a Vogon airlock with
a man from Betelgeuse and about to die of asphyxiation in deep space that I
really wish I'd listened to what my mother told me when I was young!"
"Why, what did she tell you?"
"I don't know, I didn't listen!"
-- Arthur Dent and Ford Prefect in Douglas Adams'
回复全部
回复作者
转发
0 个新帖子