aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorJay Belanger <[email protected]>2005-01-31 06:29:39 +0000
committerJay Belanger <[email protected]>2005-01-31 06:29:39 +0000
commitad1c32c76f21950d53291fc5b9c6397ca358e982 (patch)
treedcdc2349d4ff295813843a838a9853e0e9c8fe3c /lisp
parentdd9041c77a7a6c325df620d38f773215d3921343 (diff)
(calc-language): Adjust docstring.
(calc-set-mode-line): Add LaTeX support. (math-expr-special-function-mapping): New variable.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calc/calc.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index ba5cda831e..a1887daea4 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -405,6 +405,7 @@ If `C' is present, display outer brackets for matrices (centered).")
pascal Use Pascal language notation.
fortran Use Fortran language notation.
tex Use TeX notation.
+ latex Use LaTeX notation.
eqn Use eqn notation.
math Use Mathematica(tm) notation.
maple Use Maple notation.")
@@ -704,6 +705,7 @@ If nil, selections displayed but ignored.")
(defvar math-eval-rules-cache-tag t)
(defvar math-radix-explicit-format t)
(defvar math-expr-function-mapping nil)
+(defvar math-expr-special-function-mapping nil)
(defvar math-expr-variable-mapping nil)
(defvar math-read-expr-quotes nil)
(defvar math-working-step nil)
@@ -1368,6 +1370,7 @@ See calc-keypad for details."
(if calc-leading-zeros "Zero " "")
(cond ((null calc-language) "")
((eq calc-language 'tex) "TeX ")
+ ((eq calc-language 'latex) "LaTeX ")
(t (concat
(capitalize (symbol-name calc-language))
" ")))