summaryrefslogtreecommitdiff
path: root/lisp/calc/calc.el
diff options
context:
space:
mode:
authorJay Belanger <jay.p.belanger@gmail.com>2005-10-10 19:41:08 +0000
committerJay Belanger <jay.p.belanger@gmail.com>2005-10-10 19:41:08 +0000
commitbbcaa3e3b69ae3f3a4d88d35c1a08d24b3627453 (patch)
tree6644ce1bbeecdb6f248473d8ccd8d7f7e78e3fa5 /lisp/calc/calc.el
parent91f4e5461608eda157fe4fbd034bef206edfc440 (diff)
downloademacs-bbcaa3e3b69ae3f3a4d88d35c1a08d24b3627453.tar.gz
(calc-matrix-mode, calc-set-mode-line): Change the mode name `square'
to 'sqmatrix'.
Diffstat (limited to 'lisp/calc/calc.el')
-rw-r--r--lisp/calc/calc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 2220376904f..4c6820ca90e 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -654,7 +654,7 @@ If nil, computations on numbers always yield numbers where possible.")
(defcalcmodevar calc-matrix-mode nil
"If `matrix', variables are assumed to be matrix-valued.
If a number, variables are assumed to be NxN matrices.
-If `square', variables are assumed to be square matrices of an unspecified size.
+If `sqmatrix', variables are assumed to be square matrices of an unspecified size.
If `scalar', variables are assumed to be scalar-valued.
If nil, symbolic math routines make no assumptions about variables.")
@@ -1552,7 +1552,7 @@ See calc-keypad for details."
(cond ((eq calc-matrix-mode 'matrix) "Matrix ")
((integerp calc-matrix-mode)
(format "Matrix%d " calc-matrix-mode))
- ((eq calc-matrix-mode 'square) "SqMatrix ")
+ ((eq calc-matrix-mode 'sqmatrix) "SqMatrix ")
((eq calc-matrix-mode 'scalar) "Scalar ")
(t ""))
(if (eq calc-complex-mode 'polar) "Polar " "")