]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix arglist doc of json parse functions
authorBasil L. Contovounesios <contovob@tcd.ie>
Tue, 30 Jan 2018 11:10:14 +0000 (11:10 +0000)
committerPhilipp Stephani <phst@google.com>
Sat, 3 Feb 2018 14:17:10 +0000 (15:17 +0100)
* src/json.c (Fjson_parse_string, Fjson_parse_buffer):
Fix "usage:" arglist doc.

src/json.c

index 12ba7afa6a043438da84fdab13f7ddf084e7786c..b046d34f667fa51cce09b65ea7eaee8808c9d4ba 100644 (file)
@@ -740,7 +740,7 @@ object, all but the last one are ignored.  If STRING doesn't contain a
 valid JSON object, an error of type `json-parse-error' is signaled.
 The keyword argument `:object-type' specifies which Lisp type is used
 to represent objects; it can be `hash-table' or `alist'.
-usage: (string &key (OBJECT-TYPE \\='hash-table)) */)
+usage: (json-parse-string STRING &key (OBJECT-TYPE \\='hash-table))  */)
   (ptrdiff_t nargs, Lisp_Object *args)
 {
   ptrdiff_t count = SPECPDL_INDEX ();
@@ -813,7 +813,7 @@ DEFUN ("json-parse-buffer", Fjson_parse_buffer, Sjson_parse_buffer,
 This is similar to `json-parse-string', which see.  Move point after
 the end of the object if parsing was successful.  On error, point is
 not moved.
-usage: (&key (OBJECT-TYPE \\='hash-table))  */)
+usage: (json-parse-buffer &key (OBJECT-TYPE \\='hash-table))  */)
   (ptrdiff_t nargs, Lisp_Object *args)
 {
   ptrdiff_t count = SPECPDL_INDEX ();