diff options
author | Glenn Morris <rgm@gnu.org> | 2008-06-12 03:56:20 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-06-12 03:56:20 +0000 |
commit | aa360da10dc1130e40bb82225ee8988a2465f38a (patch) | |
tree | 24fea572da73c841761a9d8d8d59645bfa61d926 /lisp/emacs-lisp | |
parent | 1ad31f1bbae0aa9de6ff997803dcb4466b24e47d (diff) | |
download | emacs-aa360da10dc1130e40bb82225ee8988a2465f38a.tar.gz emacs-aa360da10dc1130e40bb82225ee8988a2465f38a.tar.bz2 emacs-aa360da10dc1130e40bb82225ee8988a2465f38a.zip |
Add some compiler declarations, for builds without X.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lmenu.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/map-ynp.el | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/lmenu.el b/lisp/emacs-lisp/lmenu.el index 81ca946e784..475d2094ca7 100644 --- a/lisp/emacs-lisp/lmenu.el +++ b/lisp/emacs-lisp/lmenu.el @@ -128,6 +128,8 @@ (setq menu-items (cdr menu-items))) menu)) +(declare-function x-popup-dialog "xmenu.c" (position contents &optional header)) + ;; XEmacs compatibility function (defun popup-dialog-box (data) "Pop up a dialog box. diff --git a/lisp/emacs-lisp/map-ynp.el b/lisp/emacs-lisp/map-ynp.el index 634538f33a9..0820c5c1e4d 100644 --- a/lisp/emacs-lisp/map-ynp.el +++ b/lisp/emacs-lisp/map-ynp.el @@ -34,6 +34,8 @@ ;;; Code: +(declare-function x-popup-dialog "xmenu.c" (position contents &optional header)) + (defun map-y-or-n-p (prompter actor list &optional help action-alist no-cursor-in-echo-area) "Ask a series of boolean questions. |