]> git.eshelyaron.com Git - emacs.git/commitdiff
; Pacify some --without-x byte-compiler warnings.
authorBasil L. Contovounesios <contovob@tcd.ie>
Sat, 7 May 2022 17:17:23 +0000 (20:17 +0300)
committerBasil L. Contovounesios <contovob@tcd.ie>
Sat, 7 May 2022 17:18:51 +0000 (20:18 +0300)
lisp/term/haiku-win.el
test/src/image-tests.el

index 5f02087732577f1918a6d414c4f6f98643523306..6396779d60dbd4ae728bcd687916a8075f8f3972 100644 (file)
@@ -99,6 +99,7 @@ for more details on the structure of the associations.")
        "B_LINK_VISITED_COLOR" "B_LINK_ACTIVE_COLOR"
        "B_STATUS_BAR_COLOR" "B_SUCCESS_COLOR" "B_FAILURE_COLOR"])
 
+(defvar x-colors)
 ;; Also update `x-colors' to take that into account.
 (setq x-colors (append haiku-allowed-ui-colors x-colors))
 
index 3885981e0b2458383e7be571ee2894bf1ae18294..f710aadea74cdccc57bd33d4a1423750982caf61 100644 (file)
@@ -53,6 +53,8 @@
 
 ;;;; image-test-size
 
+(declare-function image-size "image.c" (spec &optional pixels frame))
+
 (ert-deftest image-tests-image-size/gif ()
   (image-skip-unless 'gif)
   (pcase (image-size (create-image (cdr (assq 'gif image-tests--images))))
 
 ;;;; image-mask-p
 
+(declare-function image-mask-p "image.c" (spec &optional frame))
+
 (ert-deftest image-tests-image-mask-p/gif ()
   (image-skip-unless 'gif)
   (should-not (image-mask-p (create-image
 
 ;;;; image-metadata
 
+(declare-function image-metadata "image.c" (spec &optional frame))
+
 ;; TODO: These tests could be expanded with files that actually
 ;;       contain metadata.
 
 
 (ert-deftest image-tests-init-image-library ()
   (skip-unless (fboundp 'init-image-library))
+  (declare-function init-image-library "image.c" (type))
   (should (init-image-library 'pbm)) ; built-in
   (should-not (init-image-library 'invalid-image-type)))