diff options
Diffstat (limited to 'lisp/play')
-rw-r--r-- | lisp/play/bubbles.el | 2 | ||||
-rw-r--r-- | lisp/play/gamegrid.el | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/play/bubbles.el b/lisp/play/bubbles.el index 4d853e556fa..80aaf6b4a7e 100644 --- a/lisp/play/bubbles.el +++ b/lisp/play/bubbles.el @@ -950,6 +950,8 @@ static char * dot3d_xpm[] = { (message "bubbles-quit") (bury-buffer)) +(declare-function image-size "image.c" (spec &optional pixels frame)) + (defun bubbles--compute-offsets () "Update horizontal and vertical offsets for centering the bubbles grid. Set `bubbles--col-offset' and `bubbles--row-offset'." diff --git a/lisp/play/gamegrid.el b/lisp/play/gamegrid.el index cb2815ceef4..36362f2d49b 100644 --- a/lisp/play/gamegrid.el +++ b/lisp/play/gamegrid.el @@ -1,7 +1,7 @@ ;;; gamegrid.el --- library for implementing grid-based games on Emacs -;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; Copyright (C) 1997, 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007, +;; 2008 Free Software Foundation, Inc. ;; Author: Glynn Clements <glynn@sensei.co.uk> ;; Version: 1.02 @@ -304,6 +304,8 @@ static unsigned char gamegrid_bits[] = { 'remove-locale) (setq buffer-display-table gamegrid-display-table))) +(declare-function image-size "image.c" (spec &optional pixels frame)) + (defun gamegrid-setup-default-font () (setq gamegrid-face (copy-face 'default |