Patch 7.4.1192
Problem: Can't build with FEAT_EVAL but without FEAT_MBYTE. (John
Marriott)
Solution: Add #ifdef for FEAT_MBYTE.
Files: src/json.c
*** ../vim-7.4.1191/src/json.c 2016-01-28 14:11:33.835370481 +0100
--- src/json.c 2016-01-28 22:44:29.430847275 +0100
***************
*** 68,74 ****
--- 68,79 ----
default:
if (c >= 0x20)
{
+ #ifdef FEAT_MBYTE
numbuf[mb_char2bytes(c, numbuf)] = NUL;
+ #else
+ numbuf[0] = c;
+ numbuf[1] = NUL;
+ #endif
ga_concat(gap, numbuf);
}
else
*** ../vim-7.4.1191/src/version.c 2016-01-28 22:36:15.056065002 +0100
--- src/version.c 2016-01-28 22:45:52.389972089 +0100
***************
*** 748,749 ****
--- 748,751 ----
{ /* Add new patch number below this line */
+ /**/
+ 1192,
/**/
--
hundred-and-one symptoms of being an internet addict:
61. Your best friends know your e-mail address, but neither your phone number
nor the address where you live.
/// Bram Moolenaar -- [email protected] -- 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 ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.