From 8ff4f2f51a6cf07fc33742ce3bee81328896e49b Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Fri, 25 May 2018 23:29:36 +0000 Subject: Fri May 25 23:29:36 UTC 2018 patches/packages/glibc-zoneinfo-2018e-noarch-2_slack14.1.txz: Rebuilt. Handle removal of US/Pacific-New timezone. If we see that the machine is using this, it will be automatically switched to US/Pacific. --- patches/source/vim/patches/7.4.275 | 56 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 patches/source/vim/patches/7.4.275 (limited to 'patches/source/vim/patches/7.4.275') diff --git a/patches/source/vim/patches/7.4.275 b/patches/source/vim/patches/7.4.275 new file mode 100644 index 000000000..443fe185c --- /dev/null +++ b/patches/source/vim/patches/7.4.275 @@ -0,0 +1,56 @@ +To: vim_dev@googlegroups.com +Subject: Patch 7.4.275 +Fcc: outbox +From: Bram Moolenaar +Mime-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +------------ + +Patch 7.4.275 +Problem: When changing the type of a sign that hasn't been placed ther is + no error message. +Solution: Add an error message. (Christian Brabandt) +Files: src/ex_cmds.c + + +*** ../vim-7.4.274/src/ex_cmds.c 2014-04-29 12:15:22.856032651 +0200 +--- src/ex_cmds.c 2014-05-07 14:38:31.293091622 +0200 +*************** +*** 7275,7281 **** + else + /* ":sign place {id} file={fname}": change sign type */ + lnum = buf_change_sign_type(buf, id, sp->sn_typenr); +! update_debug_sign(buf, lnum); + } + else + EMSG(_(e_invarg)); +--- 7275,7284 ---- + else + /* ":sign place {id} file={fname}": change sign type */ + lnum = buf_change_sign_type(buf, id, sp->sn_typenr); +! if (lnum > 0) +! update_debug_sign(buf, lnum); +! else +! EMSG2(_("E885: Not possible to change sign %s"), sign_name); + } + else + EMSG(_(e_invarg)); +*** ../vim-7.4.274/src/version.c 2014-05-02 15:46:10.731268318 +0200 +--- src/version.c 2014-05-07 14:18:32.581081129 +0200 +*************** +*** 736,737 **** +--- 736,739 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 275, + /**/ + +-- +hundred-and-one symptoms of being an internet addict: +117. You are more comfortable typing in html. + + /// 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 /// -- cgit v1.2.3