aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2005-01-31 21:58:05 +0000
committerJay Belanger2005-01-31 21:58:05 +0000
commit998858ae208ae0305396e6a69369d260b8a0381d (patch)
treee9d0586dd783f01c91695d0f0ab07e0b406f408c
parent62a54f6ca5cf9b66ee35ad348097dc285c884f38 (diff)
downloademacs-998858ae208ae0305396e6a69369d260b8a0381d.tar.gz
emacs-998858ae208ae0305396e6a69369d260b8a0381d.zip
(math-tex-ignore-words): Remove LaTeX portion.
(math-latex-ignore-words): New constant.
-rw-r--r--lisp/ChangeLog17
-rw-r--r--lisp/calc/calc.el10
2 files changed, 23 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fcbfa0c2d4a..5141e5999cd 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,20 @@
12005-01-31 Jay Belanger <belanger@truman.edu>
2
3 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
4 parts.
5
6 * calc/calc-embed.el (calc-embedded-open-formula)
7 (calc-embedded-close-formula): Ignore matrix environments.
8
9 * calc/calc-ext.el (math-read-big-expr): Make LaTeX the default
10 TeX mode.
11
12 * calc/calc-lang.el (math-function-table, math-oper-table)
13 (math-variable-table): Adjust the LaTeX portions.
14
15 * calc/calc.el (math-tex-ignore-words): Remove LaTeX portion.
16 (math-latex-ignore-words): New constant.
17
12005-01-31 Richard M. Stallman <rms@gnu.org> 182005-01-31 Richard M. Stallman <rms@gnu.org>
2 19
3 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var. 20 * textmodes/ispell.el (ispell-local-dictionary-overridden): New var.
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 44c56f2787d..99857ce05a0 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -3223,8 +3223,11 @@ See calc-keypad for details."
3223 ("\\matrix" mat) ("\\bmatrix" mat) ("\\pmatrix" mat) 3223 ("\\matrix" mat) ("\\bmatrix" mat) ("\\pmatrix" mat)
3224 ("\\begin" begenv) 3224 ("\\begin" begenv)
3225 ("\\cr" punc ";") ("\\\\" punc ";") ("\\*" punc "*") 3225 ("\\cr" punc ";") ("\\\\" punc ";") ("\\*" punc "*")
3226 ("\\{" punc "[") ("\\}" punc "]") 3226 ("\\{" punc "[") ("\\}" punc "]")))
3227)) 3227
3228(defconst math-latex-ignore-words
3229 (append math-tex-ignore-words
3230 '(("\\begin" begenv))))
3228 3231
3229(defconst math-eqn-ignore-words 3232(defconst math-eqn-ignore-words
3230 '( ("roman") ("bold") ("italic") ("mark") ("lineup") ("evalto") 3233 '( ("roman") ("bold") ("italic") ("mark") ("lineup") ("evalto")
@@ -3232,8 +3235,7 @@ See calc-keypad for details."
3232 ("right" ("floor") ("ceil")) 3235 ("right" ("floor") ("ceil"))
3233 ("arc" ("sin") ("cos") ("tan") ("sinh") ("cosh") ("tanh")) 3236 ("arc" ("sin") ("cos") ("tan") ("sinh") ("cosh") ("tanh"))
3234 ("size" n) ("font" n) ("fwd" n) ("back" n) ("up" n) ("down" n) 3237 ("size" n) ("font" n) ("fwd" n) ("back" n) ("up" n) ("down" n)
3235 ("above" punc ",") 3238 ("above" punc ",")))
3236))
3237 3239
3238(defconst math-standard-opers 3240(defconst math-standard-opers
3239 '( ( "_" calcFunc-subscr 1200 1201 ) 3241 '( ( "_" calcFunc-subscr 1200 1201 )