comparison src/normal.c @ 10330:71ca6a16e818 v8.0.0060

commit https://github.com/vim/vim/commit/426f3754223c8ff8a1bc51d6ba1eba11e8982ebc Author: Bram Moolenaar <Bram@vim.org> Date: Fri Nov 4 21:22:37 2016 +0100 patch 8.0.0060 Problem: When using an Ex command for 'keywordprg' it is escaped as with a shell command. (Romain Lafourcade) Solution: Escape for an Ex command. (closes https://github.com/vim/vim/issues/1175)
author Christian Brabandt <cb@256bit.org>
date Fri, 04 Nov 2016 21:30:05 +0100
parents bc442c2296a7
children ae0faad76f9a
comparison
equal deleted inserted replaced
10329:6156ad9f0447 10330:71ca6a16e818
5711 /* 5711 /*
5712 * Now grab the chars in the identifier 5712 * Now grab the chars in the identifier
5713 */ 5713 */
5714 if (cmdchar == 'K' && !kp_help) 5714 if (cmdchar == 'K' && !kp_help)
5715 { 5715 {
5716 /* Escape the argument properly for a shell command */
5717 ptr = vim_strnsave(ptr, n); 5716 ptr = vim_strnsave(ptr, n);
5718 p = vim_strsave_shellescape(ptr, TRUE, TRUE); 5717 if (kp_ex)
5718 /* Escape the argument properly for an Ex command */
5719 p = vim_strsave_fnameescape(ptr, FALSE);
5720 else
5721 /* Escape the argument properly for a shell command */
5722 p = vim_strsave_shellescape(ptr, TRUE, TRUE);
5719 vim_free(ptr); 5723 vim_free(ptr);
5720 if (p == NULL) 5724 if (p == NULL)
5721 { 5725 {
5722 vim_free(buf); 5726 vim_free(buf);
5723 return; 5727 return;