diff options
author | Glenn Morris <rgm@gnu.org> | 2013-05-10 19:27:28 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2013-05-10 19:27:28 -0700 |
commit | f20def1f2e5ba9e0b093b050315b80b517c02dfb (patch) | |
tree | 3960fe961a829747e48fcaacbc2cea0428d00cc3 /lisp/calc | |
parent | 445f95e2ab112f211dcd66b048628f383f9363dd (diff) | |
download | emacs-f20def1f2e5ba9e0b093b050315b80b517c02dfb.tar.gz |
Fix some declarations
* lisp/faces.el (internal-face-x-get-resource):
* lisp/frame.el (ns-display-monitor-attributes-list):
* lisp/calc/calc-aent.el (math-to-radians-2):
* lisp/cedet/ede/locate.el (cedet-cscope-version-check)
(cedet-cscope-support-for-directory):
* lisp/cedet/semantic/grammar.el (semantic-grammar-wy--install-parser):
* lisp/emacs-lisp/package.el (tar-header-name, tar-header-link-type):
Fix declarations.
Diffstat (limited to 'lisp/calc')
-rw-r--r-- | lisp/calc/calc-aent.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc-aent.el b/lisp/calc/calc-aent.el index ae0230633af..6b0cfbb55d9 100644 --- a/lisp/calc/calc-aent.el +++ b/lisp/calc/calc-aent.el @@ -42,7 +42,7 @@ (declare-function math-simplify "calc-alg" (top-expr)) (declare-function math-known-matrixp "calc-arith" (a)) (declare-function math-parse-fortran-subscr "calc-lang" (sym args)) -(declare-function math-to-radians-2 "calc-math" (a)) +(declare-function math-to-radians-2 "calc-math" (a &optional force-symbolic)) (declare-function math-read-string "calc-ext" ()) (declare-function math-read-brackets "calc-vec" (space-sep math-rb-close)) (declare-function math-read-angle-brackets "calc-forms" ()) |