(calc-do-keypad, calc-inv-hyp-prefix-help)
(calc-inverse-prefix-help, calc-hyperbolic-prefix-help) (calc-explain-why, calc-clear-command-flag) (calc-roll-down-with-selections, calc-roll-up-with-selections) (calc-last-args, calc-is-inverse, calc-do-prefix-help) (math-objvecp, math-known-scalarp, math-vectorp, math-matrixp) (math-trunc-special, math-trunc-fancy, math-floor-special) (math-floor-fancy, math-square-matrixp, math-matrix-inv-raw) (math-known-matrixp, math-mod-fancy, math-pow-of-zero) (math-pow-zero, math-pow-fancy): Declare as functions.
This commit is contained in:
parent
84309b3b01
commit
22aa9347ba
1 changed files with 29 additions and 0 deletions
|
|
@ -32,6 +32,35 @@
|
|||
(require 'calc)
|
||||
(require 'calc-macs)
|
||||
|
||||
;; Declare functions which are defined elsewhere.
|
||||
(declare-function calc-do-keypad "calc-keypd" (&optional full-display interactive))
|
||||
(declare-function calc-inv-hyp-prefix-help "calc-help" ())
|
||||
(declare-function calc-inverse-prefix-help "calc-help" ())
|
||||
(declare-function calc-hyperbolic-prefix-help "calc-help" ())
|
||||
(declare-function calc-explain-why "calc-stuff" (why &optional more))
|
||||
(declare-function calc-clear-command-flag "calc-ext" (f))
|
||||
(declare-function calc-roll-down-with-selections "calc-sel" (n m))
|
||||
(declare-function calc-roll-up-with-selections "calc-sel" (n m))
|
||||
(declare-function calc-last-args "calc-undo" (n))
|
||||
(declare-function calc-is-inverse "calc-ext" ())
|
||||
(declare-function calc-do-prefix-help "calc-ext" (msgs group key))
|
||||
(declare-function math-objvecp "calc-ext" (a))
|
||||
(declare-function math-known-scalarp "calc-arith" (a &optional assume-scalar))
|
||||
(declare-function math-vectorp "calc-ext" (a))
|
||||
(declare-function math-matrixp "calc-ext" (a))
|
||||
(declare-function math-trunc-special "calc-arith" (a prec))
|
||||
(declare-function math-trunc-fancy "calc-arith" (a))
|
||||
(declare-function math-floor-special "calc-arith" (a prec))
|
||||
(declare-function math-floor-fancy "calc-arith" (a))
|
||||
(declare-function math-square-matrixp "calc-ext" (a))
|
||||
(declare-function math-matrix-inv-raw "calc-mtx" (m))
|
||||
(declare-function math-known-matrixp "calc-arith" (a))
|
||||
(declare-function math-mod-fancy "calc-arith" (a b))
|
||||
(declare-function math-pow-of-zero "calc-arith" (a b))
|
||||
(declare-function math-pow-zero "calc-arith" (a b))
|
||||
(declare-function math-pow-fancy "calc-arith" (a b))
|
||||
|
||||
|
||||
(defun calc-dispatch-help (arg)
|
||||
"C-x* is a prefix key sequence; follow it with one of these letters:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue