From: Glenn Morris Date: Fri, 9 Mar 2018 21:38:02 +0000 (-0500) Subject: Quieten --without-json compilation of json-tests.el X-Git-Tag: emacs-27.0.90~5528 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d3ceff630ed723f3eef3c1f92e55a610d1c5ca5e;p=emacs.git Quieten --without-json compilation of json-tests.el * test/src/json-tests.el (json-serialize, json-insert) (json-parse-string, json-parse-buffer): Declare. --- diff --git a/test/src/json-tests.el b/test/src/json-tests.el index 3bbf9eb96b0..09067bad8c8 100644 --- a/test/src/json-tests.el +++ b/test/src/json-tests.el @@ -26,6 +26,11 @@ (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 ()