]> code.delx.au - gnu-emacs/blobdiff - lisp/json.el
Fix minor text quoting problems in lisp top level
[gnu-emacs] / lisp / json.el
index eaf8596a6dc8649e6e6e01a5a42c2751e77b856f..5392a13f9e0bd1d400d960a9f0913a02eb6e3dd6 100644 (file)
@@ -286,7 +286,7 @@ representation will be parsed correctly."
 (defun json-read-string ()
   "Read the JSON string at point."
   (unless (char-equal (json-peek) ?\")
-    (signal 'json-string-format (list "doesn't start with '\"'!")))
+    (signal 'json-string-format (list "doesn’t start with ‘\"’!")))
   ;; Skip over the '"'
   (json-advance)
   (let ((characters '())