diff options
author | Glenn Morris <rgm@gnu.org> | 2014-01-21 20:50:40 -0500 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-01-21 20:50:40 -0500 |
commit | cc0f2ece4753d6e15eaa9519dc672b9ef332a55d (patch) | |
tree | 6e1b64e83a6b0b1ec69c684f6413db104c352fcd /lisp/subr.el | |
parent | 1bf6ecf2b3fb69af5fce50111f8c911e3438f4b4 (diff) | |
download | emacs-cc0f2ece4753d6e15eaa9519dc672b9ef332a55d.tar.gz |
Fix some function declarations
* lisp/calc/calc-embed.el (thing-at-point-looking-at):
* lisp/emacs-lisp/map-ynp.el (x-popup-dialog):
* lisp/obsolete/lmenu.el (x-popup-dialog):
* lisp/emacs-lisp/package.el (url-recreate-url):
* lisp/mail/mailclient.el (clipboard-kill-ring-save):
* lisp/subr.el (x-popup-dialog): Update declaration.
* lisp/mail/rmail.el (rmail-mime-message-p):
* lisp/window.el (tool-bar-lines-needed): Remove unnecessary declaration.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 40465556531..6709ebf0d02 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -2177,7 +2177,7 @@ floating point support." nil)))))) ;; Behind display-popup-menus-p test. -(declare-function x-popup-dialog "xmenu.c" (position contents &optional header)) +(declare-function x-popup-dialog "menu.c" (position contents &optional header)) (defun y-or-n-p (prompt) "Ask user a \"y or n\" question. Return t if answer is \"y\". |