diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2013-11-04 17:08:47 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 22:57:36 +0200 |
commit | 76fc4757ac91ac7947a01fb7b53dddf9a78a01d1 (patch) | |
tree | 9b98e6e193c7870cb27ac861394c1c4592850922 /source/ap/vim/patches/7.3.594 | |
parent | 9664bee729d487bcc0a0bc35859f8e13d5421c75 (diff) | |
download | current-76fc4757ac91ac7947a01fb7b53dddf9a78a01d1.tar.gz |
Slackware 14.1slackware-14.1
Mon Nov 4 17:08:47 UTC 2013
Slackware 14.1 x86_64 stable is released!
It's been another interesting release cycle here at Slackware bringing
new features like support for UEFI machines, updated compilers and
development tools, the switch from MySQL to MariaDB, and many more
improvements throughout the system. Thanks to the team, the upstream
developers, the dedicated Slackware community, and everyone else who
pitched in to help make this release a reality.
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.
Have fun! :-)
Diffstat (limited to 'source/ap/vim/patches/7.3.594')
-rw-r--r-- | source/ap/vim/patches/7.3.594 | 171 |
1 files changed, 0 insertions, 171 deletions
diff --git a/source/ap/vim/patches/7.3.594 b/source/ap/vim/patches/7.3.594 deleted file mode 100644 index 3f7d3b26..00000000 --- a/source/ap/vim/patches/7.3.594 +++ /dev/null @@ -1,171 +0,0 @@ -To: vim_dev@googlegroups.com -Subject: Patch 7.3.594 -Fcc: outbox -From: Bram Moolenaar <Bram@moolenaar.net> -Mime-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit ------------- - -Patch 7.3.594 -Problem: The X command server doesn't work perfectly. It sends an empty - reply for as-keys requests. -Solution: Remove duplicate ga_init2(). Do not send a reply for as-keys - requests. (Brian Burns) -Files: src/if_xcmdsrv.c - - -*** ../vim-7.3.593/src/if_xcmdsrv.c 2010-08-15 21:57:27.000000000 +0200 ---- src/if_xcmdsrv.c 2012-07-10 14:15:59.000000000 +0200 -*************** -*** 655,661 **** - if (SendInit(dpy) < 0) - return NULL; - } -- ga_init2(&ga, 1, 100); - - /* - * Read the registry property. ---- 655,660 ---- -*************** -*** 1198,1206 **** - if ((*p == 'c' || *p == 'k') && (p[1] == 0)) - { - Window resWindow; -! char_u *name, *script, *serial, *end, *res; - Bool asKeys = *p == 'k'; -- garray_T reply; - char_u *enc; - - /* ---- 1197,1204 ---- - if ((*p == 'c' || *p == 'k') && (p[1] == 0)) - { - Window resWindow; -! char_u *name, *script, *serial, *end; - Bool asKeys = *p == 'k'; - char_u *enc; - - /* -*************** -*** 1256,1305 **** - if (script == NULL || name == NULL) - continue; - -! /* -! * Initialize the result property, so that we're ready at any -! * time if we need to return an error. -! */ -! if (resWindow != None) -! { -! ga_init2(&reply, 1, 100); - #ifdef FEAT_MBYTE -! ga_grow(&reply, 50 + STRLEN(p_enc)); -! sprintf(reply.ga_data, "%cr%c-E %s%c-s %s%c-r ", - 0, 0, p_enc, 0, serial, 0); -! reply.ga_len = 14 + STRLEN(p_enc) + STRLEN(serial); - #else -! ga_grow(&reply, 50); -! sprintf(reply.ga_data, "%cr%c-s %s%c-r ", 0, 0, serial, 0); -! reply.ga_len = 10 + STRLEN(serial); - #endif -! } -! res = NULL; -! if (serverName != NULL && STRICMP(name, serverName) == 0) -! { -! script = serverConvert(enc, script, &tofree); -! if (asKeys) -! server_to_input_buf(script); -! else -! res = eval_client_expr_to_string(script); -! vim_free(tofree); -! } -! if (resWindow != None) -! { -! if (res != NULL) -! ga_concat(&reply, res); -! else if (asKeys == 0) -! { -! ga_concat(&reply, (char_u *)_(e_invexprmsg)); -! ga_append(&reply, 0); -! ga_concat(&reply, (char_u *)"-c 1"); -! } -! ga_append(&reply, NUL); -! (void)AppendPropCarefully(dpy, resWindow, commProperty, -! reply.ga_data, reply.ga_len); -! ga_clear(&reply); -! } -! vim_free(res); - } - else if (*p == 'r' && p[1] == 0) - { ---- 1254,1305 ---- - if (script == NULL || name == NULL) - continue; - -! if (serverName != NULL && STRICMP(name, serverName) == 0) -! { -! script = serverConvert(enc, script, &tofree); -! if (asKeys) -! server_to_input_buf(script); -! else -! { -! char_u *res; -! -! res = eval_client_expr_to_string(script); -! if (resWindow != None) -! { -! garray_T reply; -! -! /* Initialize the result property. */ -! ga_init2(&reply, 1, 100); - #ifdef FEAT_MBYTE -! ga_grow(&reply, 50 + STRLEN(p_enc)); -! sprintf(reply.ga_data, "%cr%c-E %s%c-s %s%c-r ", - 0, 0, p_enc, 0, serial, 0); -! reply.ga_len = 14 + STRLEN(p_enc) + STRLEN(serial); - #else -! ga_grow(&reply, 50); -! sprintf(reply.ga_data, "%cr%c-s %s%c-r ", -! 0, 0, serial, 0); -! reply.ga_len = 10 + STRLEN(serial); - #endif -! -! /* Evaluate the expression and return the result. */ -! if (res != NULL) -! ga_concat(&reply, res); -! else -! { -! ga_concat(&reply, (char_u *)_(e_invexprmsg)); -! ga_append(&reply, 0); -! ga_concat(&reply, (char_u *)"-c 1"); -! } -! ga_append(&reply, NUL); -! (void)AppendPropCarefully(dpy, resWindow, commProperty, -! reply.ga_data, reply.ga_len); -! ga_clear(&reply); -! } -! vim_free(res); -! } -! vim_free(tofree); -! } - } - else if (*p == 'r' && p[1] == 0) - { -*** ../vim-7.3.593/src/version.c 2012-07-10 13:41:09.000000000 +0200 ---- src/version.c 2012-07-10 14:17:50.000000000 +0200 -*************** -*** 716,717 **** ---- 716,719 ---- - { /* Add new patch number below this line */ -+ /**/ -+ 594, - /**/ - --- -A meeting is an event at which the minutes are kept and the hours are lost. - - /// 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 /// |