To: vim_dev@googlegroups.com Subject: Patch 9.0.0122 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0122 (after 9.0.0121) Problem: Breakindent test fails. Solution: Fix condition. Files: src/charset.c *** ../vim-9.0.0121/src/charset.c 2022-07-31 17:11:47.898558951 +0100 --- src/charset.c 2022-07-31 17:58:08.767772829 +0100 *************** *** 771,777 **** chartabsize_T cts; init_chartabsize_arg(&cts, wp, lnum, 0, line, line); ! cts.cts_with_trailing = len = MAXCOL; for ( ; *cts.cts_ptr != NUL && (len == MAXCOL || cts.cts_ptr < line + len); MB_PTR_ADV(cts.cts_ptr)) cts.cts_vcol += win_lbr_chartabsize(&cts, NULL); --- 771,777 ---- chartabsize_T cts; init_chartabsize_arg(&cts, wp, lnum, 0, line, line); ! cts.cts_with_trailing = len == MAXCOL; for ( ; *cts.cts_ptr != NUL && (len == MAXCOL || cts.cts_ptr < line + len); MB_PTR_ADV(cts.cts_ptr)) cts.cts_vcol += win_lbr_chartabsize(&cts, NULL); *** ../vim-9.0.0121/src/version.c 2022-07-31 17:11:47.898558951 +0100 --- src/version.c 2022-07-31 17:59:47.047583999 +0100 *************** *** 737,738 **** --- 737,740 ---- { /* Add new patch number below this line */ + /**/ + 122, /**/ -- "You mean there really is an answer?" "Yes! But you're not going to like it!" "Oh do please tell us!" "You're really not going to like it!" "but we MUST know - tell us" "Alright, the answer is...." "yes..." "... is ..." "yes... come on!" "is 42!" (Douglas Adams - The Hitchhiker's Guide to the Galaxy) /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///