diff options
author | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-27 04:11:13 +0000 |
---|---|---|
committer | Jay Belanger <jay.p.belanger@gmail.com> | 2004-11-27 04:11:13 +0000 |
commit | 388df0be56c59f062a57d437c02c60ee21201b72 (patch) | |
tree | 3c72f2240a148fb57971203ff4ca179a70ea2557 /lisp/calc/calc-vec.el | |
parent | 0aba68f8ca01ca275d8d3b1ec12c0ade018d7851 (diff) | |
download | emacs-388df0be56c59f062a57d437c02c60ee21201b72.tar.gz emacs-388df0be56c59f062a57d437c02c60ee21201b72.tar.bz2 emacs-388df0be56c59f062a57d437c02c60ee21201b72.zip |
(math-exp-pos, math-exp-str, math-exp-old-pos, math-exp-token)
(math-exp-keep-spaces, math-expr-data): Declare them.
Diffstat (limited to 'lisp/calc/calc-vec.el')
-rw-r--r-- | lisp/calc/calc-vec.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/calc/calc-vec.el b/lisp/calc/calc-vec.el index 0999fae52a3..38b9a0bbbca 100644 --- a/lisp/calc/calc-vec.el +++ b/lisp/calc/calc-vec.el @@ -1470,6 +1470,15 @@ ;; indirectly) by math-read-brackets. (defvar math-rb-close) +;; The next few variables are local to math-read-exprs in calc-aent.el +;; and math-read-expr in calc-ext.el, but are set in functions they call. +(defvar math-exp-pos) +(defvar math-exp-str) +(defvar math-exp-old-pos) +(defvar math-exp-token) +(defvar math-exp-keep-spaces) +(defvar math-expr-data) + (defun math-read-brackets (space-sep math-rb-close) (and space-sep (setq space-sep (not (math-check-for-commas)))) (math-read-token) |