diff options
| author | Kenichi Handa | 2004-12-30 12:45:22 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2004-12-30 12:45:22 +0000 |
| commit | c243063e8eb7c0f2aa4186da113ef0e677072a5e (patch) | |
| tree | d4eb8ff243f484e9b8723323b010cfb9621d845e | |
| parent | 004f48da21e0158d1623f7d3bc7a3cf69696884e (diff) | |
| download | emacs-c243063e8eb7c0f2aa4186da113ef0e677072a5e.tar.gz emacs-c243063e8eb7c0f2aa4186da113ef0e677072a5e.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 12 | ||||
| -rw-r--r-- | src/ChangeLog | 25 |
2 files changed, 37 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 6d7d428d0c2..8c4b059b589 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2004-12-30 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * files.el (basic-save-buffer-1): Set | ||
| 4 | explicit-buffer-file-coding-system to last-coding-system-used. | ||
| 5 | (revert-buffer): Pay attention to | ||
| 6 | explicit-buffer-file-coding-system (not buffer-file-coding-system) | ||
| 7 | on bind coding-system-for-read. | ||
| 8 | |||
| 9 | * international/mule.el (explicit-buffer-file-coding-system): New | ||
| 10 | buffer local variable. | ||
| 11 | (after-insert-file-set-coding): Set it to coding-system-for-read. | ||
| 12 | |||
| 1 | 2004-12-29 Luc Teirlinck <teirllm@auburn.edu> | 13 | 2004-12-29 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 14 | ||
| 3 | * autorevert.el (auto-revert-tail-mode): Doc fix for defvar. | 15 | * autorevert.el (auto-revert-tail-mode): Doc fix for defvar. |
diff --git a/src/ChangeLog b/src/ChangeLog index 4bc9e69ce12..eabe023a24e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,28 @@ | |||
| 1 | 2004-12-30 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * fileio.c (Finsert_file_contents): Don't use | ||
| 4 | current_buffer->buffer_file_coding_system even if REPLACE is | ||
| 5 | non-nil. Call Qafter_insert_file_set_coding with the second arg | ||
| 6 | VISIT. | ||
| 7 | |||
| 8 | * fontset.h (struct font_info): New members space_width and | ||
| 9 | average_width. | ||
| 10 | |||
| 11 | * frame.h (struct frame): New member space_width. | ||
| 12 | (FRAME_SPACE_WIDTH): New macro. | ||
| 13 | |||
| 14 | * xterm.h (struct x_display_info): New member Xatom_AVERAGE_WIDTH. | ||
| 15 | |||
| 16 | * xterm.c (x_new_font): Set FRAME_COLUMN_WIDTH to | ||
| 17 | fontp->average_width, not FONT_WIDTH. Set FRAME_SPACE_WIDTH to | ||
| 18 | fontp-?space_width.. | ||
| 19 | (x_load_font): Calculate fontp->space_width and | ||
| 20 | fontp->average_width. | ||
| 21 | (x_term_init): Initialize dpyinfo->Xatom_AVERAGE_WIDTH. | ||
| 22 | |||
| 23 | * xdisp.c (x_produce_glyphs): Calculate tab width by | ||
| 24 | FRAME_SPACE_WIDTH, not FRAME_COLUMN_WIDTH. | ||
| 25 | |||
| 1 | 2004-12-29 Sanghyuk Suh <han9kin@mac.com> | 26 | 2004-12-29 Sanghyuk Suh <han9kin@mac.com> |
| 2 | 27 | ||
| 3 | * macterm.c (SelectionRange): Add Xcode position apple event struct. | 28 | * macterm.c (SelectionRange): Add Xcode position apple event struct. |