aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-02-04 12:03:59 +0000
committerRichard M. Stallman2003-02-04 12:03:59 +0000
commit37d1e6800ca66b7977ebafb51ddb31a9de077e15 (patch)
tree4e4ec598b87d56ec4b0e94f481cd0cd79a45bd1a
parent00a7e40898fb14a6c9b1e7511143fc4447fefe58 (diff)
downloademacs-37d1e6800ca66b7977ebafb51ddb31a9de077e15.tar.gz
emacs-37d1e6800ca66b7977ebafb51ddb31a9de077e15.zip
*** empty log message ***
-rw-r--r--lib-src/ChangeLog6
-rw-r--r--lisp/ChangeLog34
-rw-r--r--man/ChangeLog4
-rw-r--r--src/ChangeLog15
4 files changed, 59 insertions, 0 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog
index ad2c569670d..39266208b23 100644
--- a/lib-src/ChangeLog
+++ b/lib-src/ChangeLog
@@ -1,3 +1,9 @@
12003-02-04 Richard M. Stallman <rms@gnu.org>
2
3 * update-game-score.c (push_score, read_scores): Cast values
4 of malloc and realloc.
5 (main, lock_file): Avoid assignment inside if.
6
12003-01-31 Joe Buehler <jhpb@draco.hekimian.com> 72003-01-31 Joe Buehler <jhpb@draco.hekimian.com>
2 8
3 * Makefile.in: Use @EXEEXT@ for Cygwin. 9 * Makefile.in: Use @EXEEXT@ for Cygwin.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index bae83c5abf7..4771de3726b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,37 @@
12003-02-04 Richard M. Stallman <rms@gnu.org>
2
3 * term.el (term-raw-map): Set it up at load time.
4 (term-char-mode): Don't set up term-raw-map here.
5 (term-set-escape-char): Don't set up C-x subcommand.
6 (term-ansi-face-already-done): Renamed from
7 term-ansi-face-alredy-done.
8 (term-command-hook): Avoid error if STRING is empty.
9 (term, term-mode): Doc fixes.
10
11 * term.el: Redesign handling of colors and faces.
12 Delete all the faces that this mode used to make.
13 (ansi-term-color-vector): New variable.
14 (ansi-term-fg-faces-vector, ansi-term-bg-faces-vector)
15 (ansi-term-inv-bg-faces-vector, ansi-term-inv-fg-faces-vector):
16 Variables deleted.
17 (term-default-fg-color, term-default-bg-color): Use defcustom.
18 (term-handle-colors-array): Use ansi-term-color-vector,
19 and specify face attributes rather than faces in `face' property.
20
21 * term.el (term-ansi-fg-faces-vector, term-ansi-bg-faces-vector)
22 (term-ansi-inv-fg-faces-vector, term-ansi-inv-bg-faces-vector)
23 (term-ansi-reverse-faces-vector): Unused variables deleted.
24 (term-ignore-error): Macro deleted.
25
26 * simple.el (back-to-indentation): Skip all whitespace
27 except for newlines.
28
29 * files.el (find-alternate-file): Handle dired-directory
30 like buffer-file-name.
31
32 * dired.el (dired-find-buffer-nocreate): Avoid error if
33 dired-directory is nil.
34
12003-02-04 Juanma Barranquero <lektu@terra.es> 352003-02-04 Juanma Barranquero <lektu@terra.es>
2 36
3 * image.el (image-type-regexps): Fix typo. 37 * image.el (image-type-regexps): Fix typo.
diff --git a/man/ChangeLog b/man/ChangeLog
index 9b6eab92568..aaaccb3efb3 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,7 @@
12003-02-01 Kevin Ryde <user42@zip.com.au>
2
3 * glossary.texi (Glossary): Correction to cl cross reference.
4
12003-01-20 Richard M. Stallman <rms@gnu.org> 52003-01-20 Richard M. Stallman <rms@gnu.org>
2 6
3 * killing.texi (Rectangles): Document C-x c r. 7 * killing.texi (Rectangles): Document C-x c r.
diff --git a/src/ChangeLog b/src/ChangeLog
index 56159bffca1..06b5ab54b57 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,18 @@
12003-02-04 Richard M. Stallman <rms@gnu.org>
2
3 * keyboard.c (echo_now): Update before_command_echo_length.
4 (Freset_this_command_lengths): Reset this_command_key_count etc.
5 immediately rather than arranging to do it later.
6 (before_command_key_count_1, before_command_echo_length_1)
7 (before_command_restore_flag): Vars deleted.
8 (add_command_key): Don't handle before_command_restore_flag.
9 (read_char, record_menu_key): Don't update before_command_key_count or
10 before_command_echo_length.
11 (read_char): Don't handle before_command_restore_flag.
12
13 * keyboard.c (command_loop_1): Don't call adjust_point_for_property
14 in direct-output clauses if it wouldn't be called in the ordinary case.
15
12003-02-04 Kim F. Storm <storm@cua.dk> 162003-02-04 Kim F. Storm <storm@cua.dk>
2 17
3 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix. 18 * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.