diff options
Diffstat (limited to 'lisp/json.el')
| -rw-r--r-- | lisp/json.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/json.el b/lisp/json.el index eaf8596a6dc..5392a13f9e0 100644 --- a/lisp/json.el +++ b/lisp/json.el | |||
| @@ -286,7 +286,7 @@ representation will be parsed correctly." | |||
| 286 | (defun json-read-string () | 286 | (defun json-read-string () |
| 287 | "Read the JSON string at point." | 287 | "Read the JSON string at point." |
| 288 | (unless (char-equal (json-peek) ?\") | 288 | (unless (char-equal (json-peek) ?\") |
| 289 | (signal 'json-string-format (list "doesn't start with '\"'!"))) | 289 | (signal 'json-string-format (list "doesn’t start with ‘\"’!"))) |
| 290 | ;; Skip over the '"' | 290 | ;; Skip over the '"' |
| 291 | (json-advance) | 291 | (json-advance) |
| 292 | (let ((characters '()) | 292 | (let ((characters '()) |