From 2d06bfde29bd3a62fc85823d2aa719ef943bd319 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 23 Jul 2020 17:16:18 +0200 Subject: patch 8.2.1281: the "trailing characters" error can be hard to understand Problem: The "trailing characters" error can be hard to understand. Solution: Add the trailing characters to the message. --- src/json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/json.c') diff --git a/src/json.c b/src/json.c index c22864df1..8262640db 100644 --- a/src/json.c +++ b/src/json.c @@ -1086,7 +1086,7 @@ json_decode_all(js_read_T *reader, typval_T *res, int options) json_skip_white(reader); if (reader->js_buf[reader->js_used] != NUL) { - emsg(_(e_trailing)); + semsg(_(e_trailing_arg), reader->js_buf + reader->js_used); return FAIL; } return OK; -- cgit v1.2.1