aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calc
diff options
context:
space:
mode:
authorGlenn Morris2014-01-21 20:50:40 -0500
committerGlenn Morris2014-01-21 20:50:40 -0500
commitcc0f2ece4753d6e15eaa9519dc672b9ef332a55d (patch)
tree6e1b64e83a6b0b1ec69c684f6413db104c352fcd /lisp/calc
parent1bf6ecf2b3fb69af5fce50111f8c911e3438f4b4 (diff)
downloademacs-cc0f2ece4753d6e15eaa9519dc672b9ef332a55d.tar.gz
emacs-cc0f2ece4753d6e15eaa9519dc672b9ef332a55d.zip
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.el3
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 @@
30(require 'calc-macs) 30(require 'calc-macs)
31 31
32;; Declare functions which are defined elsewhere. 32;; Declare functions which are defined elsewhere.
33(declare-function thing-at-point-looking-at "thingatpt" (regexp)) 33(declare-function thing-at-point-looking-at "thingatpt"
34 (regexp &optional distance))
34 35
35 36
36(defun calc-show-plain (n) 37(defun calc-show-plain (n)