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/calc | |
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/calc')
-rw-r--r-- | lisp/calc/calc-embed.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/calc/calc-embed.el b/lisp/calc/calc-embed.el index e6fbb18dd8a..52d2f4c0611 100644 --- a/lisp/calc/calc-embed.el +++ b/lisp/calc/calc-embed.el @@ -30,7 +30,8 @@ (require 'calc-macs) ;; Declare functions which are defined elsewhere. -(declare-function thing-at-point-looking-at "thingatpt" (regexp)) +(declare-function thing-at-point-looking-at "thingatpt" + (regexp &optional distance)) (defun calc-show-plain (n) |