]> git.eshelyaron.com Git - emacs.git/commitdiff
Silence some byte-compiler warnings
authorStefan Kangas <stefankangas@gmail.com>
Sat, 26 Sep 2020 09:34:20 +0000 (11:34 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 26 Sep 2020 10:03:07 +0000 (12:03 +0200)
* test/lisp/arc-mode-tests.el (arc-mode-test-archive-int-to-mode):
* test/lisp/custom-tests.el (cus-test-opts):
* test/lisp/help-fns-tests.el (foo-test-map)
(help-fns-test--describe-keymap-foo):
* test/src/fns-tests.el (w32-collate-ignore-punctuation)
(fns-tests-func-arity): Silence byte-compiler warnings.

test/lisp/arc-mode-tests.el
test/lisp/custom-tests.el
test/lisp/help-fns-tests.el
test/src/fns-tests.el

index 22ca7e2ec55944159a979ad59b2c4d5dc424e8ed..e92a4d28c6fa3ccde6baed72affb6083615c6be0 100644 (file)
@@ -32,7 +32,7 @@
                      (cons 1024 "------S---") ; Bug#28092
                      (cons 2048 "---S------"))))
     (dolist (x alist)
-      (should (equal (cdr x) (archive-int-to-mode (car x)))))))
+      (should (equal (cdr x) (file-modes-number-to-symbolic (car x)))))))
 
 (ert-deftest arc-mode-test-zip-extract-gz ()
   (skip-unless (and archive-zip-extract (executable-find (car archive-zip-extract))))
index 07f626fd65cb9f5902dbece592d27723befb88eb..76661dc13b83be28f40de174a183f9d1ff93fe4a 100644 (file)
 (defconst custom-test-admin-cus-test
   (expand-file-name "admin/cus-test.el" source-directory))
 
+(declare-function cus-test-opts custom-test-admin-cus-test)
+
 (ert-deftest check-for-wrong-custom-types ()
   :tags '(:expensive-test)
   (skip-unless (file-readable-p custom-test-admin-cus-test))
index da2b49e6b842287e26b97965379c40b246da1c3d..811b3677910bcd8c00e472655a96ff78d118bab6 100644 (file)
@@ -123,6 +123,9 @@ Return first line of the output of (describe-function-1 FUNC)."
     (goto-char (point-min))
     (should (looking-at "^font-lock-comment-face is "))))
 
+(defvar foo-test-map)
+(defvar help-fns-test--describe-keymap-foo)
+
 \f
 ;;; Tests for describe-keymap
 (ert-deftest help-fns-test-find-keymap-name ()
index 323743d84201c0b3dec6674278ece04e9319056e..f2e1a268b0890dfc721c5d0fece78d93844995f1 100644 (file)
   (should (equal (should-error (sort "cba" #'<) :type 'wrong-type-argument)
                  '(wrong-type-argument list-or-vector-p "cba"))))
 
+(defvar w32-collate-ignore-punctuation)
+
 (ert-deftest fns-tests-collate-sort ()
   (skip-unless (fns-tests--collate-enabled-p))
 
   (should (equal (func-arity 'format) '(1 . many)))
   (require 'info)
   (should (equal (func-arity 'Info-goto-node) '(1 . 3)))
-  (should (equal (func-arity (lambda (&rest x))) '(0 . many)))
-  (should (equal (func-arity (eval '(lambda (x &optional y)) nil)) '(1 . 2)))
-  (should (equal (func-arity (eval '(lambda (x &optional y)) t)) '(1 . 2)))
+  (should (equal (func-arity (lambda (&rest _x))) '(0 . many)))
+  (should (equal (func-arity (eval '(lambda (_x &optional y)) nil)) '(1 . 2)))
+  (should (equal (func-arity (eval '(lambda (_x &optional y)) t)) '(1 . 2)))
   (should (equal (func-arity 'let) '(1 . unevalled))))
 
 (defun fns-tests--string-repeat (s o)