# HG changeset patch # User Jay Belanger # Date 1128973106 0 # Node ID 1851d5f19b4f60aac206ee562ee96b015da85a37 # Parent 43c517a3ef4eec33cc572fddc0b15134085f7cd2 (calc-matrix-mode, calc-set-mode-line): Change the mode name `square' to 'sqmatrix'. diff -r 43c517a3ef4e -r 1851d5f19b4f lisp/calc/calc.el --- a/lisp/calc/calc.el Mon Oct 10 19:38:02 2005 +0000 +++ b/lisp/calc/calc.el Mon Oct 10 19:38:26 2005 +0000 @@ -654,7 +654,7 @@ (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 @@ (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 " "")