comparison src/list.c @ 11973:aec3df2af27c v8.0.0867

patch 8.0.0867: job and channel in a dict value not quoted commit https://github.com/vim/vim/commit/35422f45ba01806d357994f18cb9af64980c67e6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 5 16:33:56 2017 +0200 patch 8.0.0867: job and channel in a dict value not quoted Problem: When using a job or channel value as a dict value, when turning it into a string the quotes are missing. Solution: Add quotes to the job and channel values. (Yasuhiro Matsumoto, closes #1930)
author Christian Brabandt <cb@256bit.org>
date Sat, 05 Aug 2017 16:45:04 +0200
parents 162bcd0debd7
children dd3b2ecf91f6
comparison
equal deleted inserted replaced
11972:94f8b639760a 11973:aec3df2af27c
738 738
739 /* Stringify each item in the list. */ 739 /* Stringify each item in the list. */
740 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next) 740 for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
741 { 741 {
742 s = echo_string_core(&item->li_tv, &tofree, numbuf, copyID, 742 s = echo_string_core(&item->li_tv, &tofree, numbuf, copyID,
743 echo_style, restore_copyID, FALSE); 743 echo_style, restore_copyID, !echo_style);
744 if (s == NULL) 744 if (s == NULL)
745 return FAIL; 745 return FAIL;
746 746
747 len = (int)STRLEN(s); 747 len = (int)STRLEN(s);
748 sumlen += len; 748 sumlen += len;