Mercurial > emacs
comparison lisp/calc/calc-misc.el @ 86477:327601aefd65
(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.
author | Jay Belanger <jay.p.belanger@gmail.com> |
---|---|
date | Tue, 27 Nov 2007 04:06:31 +0000 |
parents | 23f1c8af4174 |
children | 107ccd98fa12 53108e6cea98 |
comparison
equal
deleted
inserted
replaced
86476:577a47c95cf8 | 86477:327601aefd65 |
---|---|
29 | 29 |
30 ;; This file is autoloaded from calc.el. | 30 ;; This file is autoloaded from calc.el. |
31 | 31 |
32 (require 'calc) | 32 (require 'calc) |
33 (require 'calc-macs) | 33 (require 'calc-macs) |
34 | |
35 ;; Declare functions which are defined elsewhere. | |
36 (declare-function calc-do-keypad "calc-keypd" (&optional full-display interactive)) | |
37 (declare-function calc-inv-hyp-prefix-help "calc-help" ()) | |
38 (declare-function calc-inverse-prefix-help "calc-help" ()) | |
39 (declare-function calc-hyperbolic-prefix-help "calc-help" ()) | |
40 (declare-function calc-explain-why "calc-stuff" (why &optional more)) | |
41 (declare-function calc-clear-command-flag "calc-ext" (f)) | |
42 (declare-function calc-roll-down-with-selections "calc-sel" (n m)) | |
43 (declare-function calc-roll-up-with-selections "calc-sel" (n m)) | |
44 (declare-function calc-last-args "calc-undo" (n)) | |
45 (declare-function calc-is-inverse "calc-ext" ()) | |
46 (declare-function calc-do-prefix-help "calc-ext" (msgs group key)) | |
47 (declare-function math-objvecp "calc-ext" (a)) | |
48 (declare-function math-known-scalarp "calc-arith" (a &optional assume-scalar)) | |
49 (declare-function math-vectorp "calc-ext" (a)) | |
50 (declare-function math-matrixp "calc-ext" (a)) | |
51 (declare-function math-trunc-special "calc-arith" (a prec)) | |
52 (declare-function math-trunc-fancy "calc-arith" (a)) | |
53 (declare-function math-floor-special "calc-arith" (a prec)) | |
54 (declare-function math-floor-fancy "calc-arith" (a)) | |
55 (declare-function math-square-matrixp "calc-ext" (a)) | |
56 (declare-function math-matrix-inv-raw "calc-mtx" (m)) | |
57 (declare-function math-known-matrixp "calc-arith" (a)) | |
58 (declare-function math-mod-fancy "calc-arith" (a b)) | |
59 (declare-function math-pow-of-zero "calc-arith" (a b)) | |
60 (declare-function math-pow-zero "calc-arith" (a b)) | |
61 (declare-function math-pow-fancy "calc-arith" (a b)) | |
62 | |
34 | 63 |
35 (defun calc-dispatch-help (arg) | 64 (defun calc-dispatch-help (arg) |
36 "C-x* is a prefix key sequence; follow it with one of these letters: | 65 "C-x* is a prefix key sequence; follow it with one of these letters: |
37 | 66 |
38 For turning Calc on and off: | 67 For turning Calc on and off: |