diff options
| author | Andrew Innes | 2001-01-02 22:57:41 +0000 |
|---|---|---|
| committer | Andrew Innes | 2001-01-02 22:57:41 +0000 |
| commit | 13d6a61c2874b57d7db631651841b8ecbafa8ef8 (patch) | |
| tree | 40d62355eac3de481ccbe4f44bdd129318c3d9a8 | |
| parent | ddbe13894c08f9bbe753607527a75bb17ef3c478 (diff) | |
| download | emacs-13d6a61c2874b57d7db631651841b8ecbafa8ef8.tar.gz emacs-13d6a61c2874b57d7db631651841b8ecbafa8ef8.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | nt/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 47 |
3 files changed, 57 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 83483b12c9f..2f55ad30996 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-01-02 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * w32-fns.el (convert-standard-filename): Do length check on name | ||
| 4 | before aref. | ||
| 5 | |||
| 1 | 2001-01-02 Dave Love <fx@gnu.org> | 6 | 2001-01-02 Dave Love <fx@gnu.org> |
| 2 | 7 | ||
| 3 | * calendar/todo-mode.el (todo): Add :link, :version. | 8 | * calendar/todo-mode.el (todo): Add :link, :version. |
diff --git a/nt/ChangeLog b/nt/ChangeLog index 87bab4fcea1..1bdbc42d0e3 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-01-02 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * config.nt (RE_TRANSLATE): Use CHAR_TABLE_TRANSLATE macro rather | ||
| 4 | than the function. | ||
| 5 | |||
| 1 | 2000-12-17 Andrew Innes <andrewi@gnu.org> | 6 | 2000-12-17 Andrew Innes <andrewi@gnu.org> |
| 2 | 7 | ||
| 3 | * makefile.w32-in (install): Copy directories to the correct | 8 | * makefile.w32-in (install): Copy directories to the correct |
diff --git a/src/ChangeLog b/src/ChangeLog index b71ef902439..636472c4183 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,50 @@ | |||
| 1 | 2001-01-02 Andrew Innes <andrewi@gnu.org> | ||
| 2 | |||
| 3 | * term.c (FRAME_TERMCAP_P) [WINDOWSNT]: Remove redefinition. | ||
| 4 | |||
| 5 | * frame.h (output_method): Add output_w32_console method. | ||
| 6 | (FRAME_W32_CONSOLE_P): New macro. | ||
| 7 | |||
| 8 | * frame.c (make_terminal_frame) [WINDOWSNT]: Make terminal frames | ||
| 9 | use output_w32_console method. | ||
| 10 | (Qw32_console): New Lisp_Object. | ||
| 11 | (Fframep): Return it. | ||
| 12 | (syms_of_frame): Init it. | ||
| 13 | (Fframe_parameters): Report w32console as font for w32_console | ||
| 14 | frames. | ||
| 15 | |||
| 16 | * xfaces.c (realize_default_face): Set face foreground and | ||
| 17 | background to unspecified for w32_console frames. | ||
| 18 | (realize_face): Realize face cache for w32_console frames. | ||
| 19 | (realize_tty_face): Accept w32_console frames. | ||
| 20 | |||
| 21 | * xdisp.c (handle_single_display_prop): Return if frame is | ||
| 22 | w32_console. | ||
| 23 | (init_iterator) [WINDOWSNT]: Initialize frame face cache if | ||
| 24 | necessary, even if running interactively. | ||
| 25 | |||
| 26 | * dispnew.c (Fredraw_frame): Call set_terminal_modes for | ||
| 27 | w32_console frames. | ||
| 28 | |||
| 29 | * w32term.c (x_update_begin): | ||
| 30 | (x_update_end): | ||
| 31 | (x_clear_frame): | ||
| 32 | (x_ins_del_lines): | ||
| 33 | (x_change_line_highlight): | ||
| 34 | (x_delete_glyphs): | ||
| 35 | (w32_ring_bell): | ||
| 36 | (x_update_begin): | ||
| 37 | (x_update_end): | ||
| 38 | (w32_reassert_line_highlight): | ||
| 39 | (w32_frame_rehighlight): | ||
| 40 | (w32_frame_raise_lower): Do nothing if not w32 frame. | ||
| 41 | |||
| 42 | * w32xfns.c (get_frame_dc): Abort if called on a non-w32 frame. | ||
| 43 | |||
| 44 | * w32fns.c (Fx_display_color_cells): Determine correct value, when | ||
| 45 | system doesn't tell us directly. | ||
| 46 | (Fx_display_visual_class): Implement properly. | ||
| 47 | |||
| 1 | 2001-01-02 Gerd Moellmann <gerd@gnu.org> | 48 | 2001-01-02 Gerd Moellmann <gerd@gnu.org> |
| 2 | 49 | ||
| 3 | * window.c (Frecenter): Handle centering in graphical frames | 50 | * window.c (Frecenter): Handle centering in graphical frames |