comparison lisp/calc/calc-aent.el @ 86466:7777ff0392d6

(calc-refresh-evaltos, calc-execute-kbd-macro) (math-is-true, calc-explain-why, calc-alg-edit) (math-composite-inequalities, math-flatten-lands) (math-multi-subst, calcFunc-vmatches, math-simplify) (math-known-matrixp, math-parse-fortran-subscr, math-to-radians-2) (math-read-string, math-read-brackets, math-read-angle-brackets): Declare as functions.
author Jay Belanger <jay.p.belanger@gmail.com>
date Tue, 27 Nov 2007 04:00:56 +0000
parents 8d7e01d03e55
children edfd75871d15
comparison
equal deleted inserted replaced
86465:c1445e6992c4 86466:7777ff0392d6
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-refresh-evaltos "calc-ext" (&optional which-var))
37 (declare-function calc-execute-kbd-macro "calc-prog" (mac arg &rest prefix))
38 (declare-function math-is-true "calc-ext" (expr))
39 (declare-function calc-explain-why "calc-stuff" (why &optional more))
40 (declare-function calc-alg-edit "calc-yank" (str))
41 (declare-function math-composite-inequalities "calc-prog" (x op))
42 (declare-function math-flatten-lands "calc-rewr" (expr))
43 (declare-function math-multi-subst "calc-map" (expr olds news))
44 (declare-function calcFunc-vmatches "calc-rewr" (expr pat))
45 (declare-function math-simplify "calc-alg" (top-expr))
46 (declare-function math-known-matrixp "calc-arith" (a))
47 (declare-function math-parse-fortran-subscr "calc-lang" (sym args))
48 (declare-function math-to-radians-2 "calc-math" (a))
49 (declare-function math-read-string "calc-ext" ())
50 (declare-function math-read-brackets "calc-vec" (space-sep math-rb-close))
51 (declare-function math-read-angle-brackets "calc-forms" ())
52
34 53
35 (defvar calc-quick-calc-history nil 54 (defvar calc-quick-calc-history nil
36 "The history list for quick-calc.") 55 "The history list for quick-calc.")
37 56
38 (defun calc-do-quick-calc () 57 (defun calc-do-quick-calc ()