aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog13
-rw-r--r--lispref/ChangeLog4
-rw-r--r--src/ChangeLog9
3 files changed, 23 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 5141e5999cd..b3b9034620d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12005-01-31 Kim F. Storm <storm@cua.dk>
2
3 * ses.el (ses-create-cell-variable-range)
4 (ses-destroy-cell-variable-range, ses-reset-header-string)
5 (ses-set-with-undo, ses-unset-with-undo, ses-aset-with-undo)
6 (ses-insert-row): Fix format of apply undo entries.
7
12005-01-31 Jay Belanger <belanger@truman.edu> 82005-01-31 Jay Belanger <belanger@truman.edu>
2 9
3 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX 10 * calc/calc-aent.el (math-read-token): Separate the TeX and LaTeX
@@ -31,8 +38,8 @@
31 user preferences. 38 user preferences.
32 (ispell-internal-change-dictionary): New function 39 (ispell-internal-change-dictionary): New function
33 to change the current dictionary in use. 40 to change the current dictionary in use.
34 (ispell-region, ispell-process-line, ispell-buffer-local-dict): 41 (ispell-region, ispell-process-line, ispell-buffer-local-dict):
35 Use ispell-current-dictionary. 42 Use ispell-current-dictionary.
36 Handle ispell-local-dictionary-overridden. 43 Handle ispell-local-dictionary-overridden.
37 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary. 44 (ispell-buffer-local-dict): Call ispell-internal-change-dictionary.
38 45
@@ -56,7 +63,7 @@
56 (calc-set-mode-line): Add LaTeX support. 63 (calc-set-mode-line): Add LaTeX support.
57 (math-expr-special-function-mapping): New variable. 64 (math-expr-special-function-mapping): New variable.
58 (math-tex-ignore-words): Add to list. 65 (math-tex-ignore-words): Add to list.
59 66
60 * calc/calccomp.el (math-compose-expr, math-compose-rows): 67 * calc/calccomp.el (math-compose-expr, math-compose-rows):
61 Add LaTeX support. 68 Add LaTeX support.
62 (math-compose-expr): Add support for special functions. 69 (math-compose-expr): Add support for special functions.
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index c0ce2c6ff0f..75e9b4cdd29 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,7 @@
12005-02-01 Kim F. Storm <storm@cua.dk>
2
3 * text.texi (Undo) <buffer-undo-list>: Describe `apply' elements.
4
12005-01-29 Eli Zaretskii <eliz@gnu.org> 52005-01-29 Eli Zaretskii <eliz@gnu.org>
2 6
3 * commands.texi (Misc Events): Describe the help-echo event. 7 * commands.texi (Misc Events): Describe the help-echo event.
diff --git a/src/ChangeLog b/src/ChangeLog
index 7c95c9868a5..ac38d0de416 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
12005-01-31 Kim F. Storm <storm@cua.dk>
2
3 * undo.c (Qapply): New lisp var.
4 (syms_of_undo): Intern and staticpro it.
5 (Fprimitive_undo): Support formats (apply FUNNAME . ARGS) and
6 (apply DELTA BEG END FUNNAME . ARGS) instead of (FUNNAME . ARGS).
7
8 * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
9
12005-01-30 Jesper Harder <harder@phys.au.dk> 102005-01-30 Jesper Harder <harder@phys.au.dk>
2 11
3 * macterm.c (syms_of_macterm) <mac-reverse-ctrl-meta> 12 * macterm.c (syms_of_macterm) <mac-reverse-ctrl-meta>