]> git.eshelyaron.com Git - emacs.git/commitdiff
Quieten --without-json compilation of json-tests.el
authorGlenn Morris <rgm@gnu.org>
Fri, 9 Mar 2018 21:38:02 +0000 (16:38 -0500)
committerAndrew G Cohen <cohen@andy.bu.edu>
Tue, 11 Dec 2018 06:15:02 +0000 (14:15 +0800)
* test/src/json-tests.el (json-serialize, json-insert)
(json-parse-string, json-parse-buffer): Declare.

test/src/json-tests.el

index 3bbf9eb96b08f951e5419a63ace13d5ec27f8941..09067bad8c884ef1e5f5004458157ed26cd297f7 100644 (file)
 (require 'cl-lib)
 (require 'map)
 
+(declare-function json-serialize "json.c" (object))
+(declare-function json-insert "json.c" (object))
+(declare-function json-parse-string "json.c" (string &rest args))
+(declare-function json-parse-buffer "json.c" (&rest args))
+
 (define-error 'json-tests--error "JSON test error")
 
 (ert-deftest json-serialize/roundtrip ()