* If the memory is allocated "tofree" is set to it, otherwise NULL.
* "numbuf" is used for a number.
* When "copyID" is not NULL replace recursive lists and dicts with "...".
- * When both "echo_style" and "dict_val" are FALSE, put quotes around stings as
- * "string()", otherwise does not put quotes around strings, as ":echo"
- * displays values.
+ * When both "echo_style" and "composite_val" are FALSE, put quotes around
+ * stings as "string()", otherwise does not put quotes around strings, as
+ * ":echo" displays values.
* When "restore_copyID" is FALSE, repeated items in dictionaries and lists
* are replaced with "...".
* May return NULL.
int copyID,
int echo_style,
int restore_copyID,
- int dict_val)
+ int composite_val)
{
static int recurse = 0;
char_u *r = NULL;
switch (tv->v_type)
{
case VAR_STRING:
- if (echo_style && !dict_val)
+ if (echo_style && !composite_val)
{
*tofree = NULL;
- r = get_tv_string_buf(tv, numbuf);
+ r = tv->vval.v_string;
+ if (r == NULL)
+ r = (char_u *)"";
}
else
{
case VAR_NUMBER:
case VAR_UNKNOWN:
+ *tofree = NULL;
+ r = get_tv_string_buf(tv, numbuf);
+ break;
+
case VAR_JOB:
case VAR_CHANNEL:
*tofree = NULL;
r = get_tv_string_buf(tv, numbuf);
+ if (composite_val)
+ {
+ *tofree = string_quote(r, FALSE);
+ r = *tofree;
+ }
break;
case VAR_FLOAT:
for (item = l->lv_first; item != NULL && !got_int; item = item->li_next)
{
s = echo_string_core(&item->li_tv, &tofree, numbuf, copyID,
- echo_style, restore_copyID, FALSE);
+ echo_style, restore_copyID, !echo_style);
if (s == NULL)
return FAIL;
let g:job = term_getjob(buf)
call assert_equal(v:t_job, type(g:job))
+ let string = string({'job': term_getjob(buf)})
+ call assert_match("{'job': 'process \\d\\+ run'}", string)
+
return buf
endfunc