diff options
| author | Jason Rumney | 2000-03-22 23:18:10 +0000 |
|---|---|---|
| committer | Jason Rumney | 2000-03-22 23:18:10 +0000 |
| commit | ff4df011b908a175a702eedf12e07805cf08c5f5 (patch) | |
| tree | bf02a5e1cf3a744243193e0cb1abbc7512c2edfa | |
| parent | 7d8e57dac87eba53a79e1338b70958c0d68fc85f (diff) | |
| download | emacs-ff4df011b908a175a702eedf12e07805cf08c5f5.tar.gz emacs-ff4df011b908a175a702eedf12e07805cf08c5f5.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 57 |
2 files changed, 61 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 67a9387c4c5..99209b23efe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2000-03-22 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * w32-fns.el (w32-charset-info-alist): Initialize. | ||
| 4 | |||
| 1 | 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> | 5 | 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br> |
| 2 | 6 | ||
| 3 | * ps-print.el: N-up last page fix. | 7 | * ps-print.el: N-up last page fix. |
diff --git a/src/ChangeLog b/src/ChangeLog index 3ee198fecd3..33b82214e51 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,60 @@ | |||
| 1 | 2000-03-22 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * w32menu.c (single_submenu): Set help string to NULL if none. | ||
| 4 | (w32_menu_show): Set help string correctly. | ||
| 5 | (add-menu-item): Set help string in MIIM_DATA for menu item. | ||
| 6 | Load SetMenuItemInfoA explicitly. | ||
| 7 | (w32_menu_display_help): New function. | ||
| 8 | |||
| 9 | * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message. | ||
| 10 | (QCdata): Moved to xdisp.c. | ||
| 11 | |||
| 12 | * w32term.c (w32_read_socket): Handle WM_MENUSELECT message. | ||
| 13 | (Vw32_charset_to_codepage_alist): Removed. | ||
| 14 | (Vw32_charset_info_alist): New variable. | ||
| 15 | (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312, | ||
| 16 | chinesebig5, oem, easteurope, turkish, baltic, russian, arabic, | ||
| 17 | greek, hebrew, thai, johab, mac, unicode]): New symbols. | ||
| 18 | (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace | ||
| 19 | with TODO comment. | ||
| 20 | (w32_codepage_for_font): Use Vw32_charset_info_alist. | ||
| 21 | (syms_of_w32term): Remove Vw32_charset_to_codepage_alist. | ||
| 22 | Define Vw32_charset_info_alist and w32_charset symbols. | ||
| 23 | |||
| 24 | 2000-03-22 Jason Rumney <jasonr@gnu.org> | ||
| 25 | |||
| 26 | * makefile.nt (w32bdf.obj): Update dependencies. | ||
| 27 | |||
| 28 | * w32bdf.c: Include frame.h and dispextern.h before fontset.h. | ||
| 29 | |||
| 30 | * w32fns.c: Include fontset.h after dispextern.h. | ||
| 31 | (Fx_create_frame): Do not create fontset. | ||
| 32 | (w32_load_system_font): Doc fix. | ||
| 33 | (Fx_close_connection): Free full_name if it is not shared. | ||
| 34 | |||
| 35 | * w32term.c: Include fontset.h after dispextern.h. | ||
| 36 | (x_get_glyph_face_and_encoding): New parameter two_byte_p. Callers | ||
| 37 | updated. | ||
| 38 | (w32_per_char_metric): If PCM is invalid, delete and return NULL. | ||
| 39 | (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id. | ||
| 40 | (w32_font_is_double_byte): New function, needs body. | ||
| 41 | (x_append_glyph): Set glyph->glyph_not_available_p. | ||
| 42 | (x_produce_glyphs): Set it->glyph_not_available_p. Don't set | ||
| 43 | it->charset. If it->multibyte_p is zero and it->c is a multibyte | ||
| 44 | character, convert it to a unibyte character. | ||
| 45 | (struct glyph_string): Delete member `charset'. | ||
| 46 | (W32_TEXTOUT): Temporarily remove charset_dim until another way of | ||
| 47 | calculating it is found. | ||
| 48 | (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle | ||
| 49 | the case that per char metric is not available correctly. | ||
| 50 | (x_fill_glyph_string): Handle the case that the specific glyph is | ||
| 51 | not available correctly. | ||
| 52 | (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset. | ||
| 53 | (BUILD_COMPOSITE_GLYPH_STRING): Likewise. | ||
| 54 | (x_new_font): Call FS_LOAD_FONT, not fs_load_font. | ||
| 55 | (x_new_fontset): Call fontset_ascii to get ASCII font name of the | ||
| 56 | fontset. Don't call FS_LOAD_FONT. | ||
| 57 | |||
| 1 | 2000-03-22 Ken Raeburn <raeburn@gnu.org> | 58 | 2000-03-22 Ken Raeburn <raeburn@gnu.org> |
| 2 | 59 | ||
| 3 | * intervals.h (NULL_INTERVAL): Cast to INTERVAL type. | 60 | * intervals.h (NULL_INTERVAL): Cast to INTERVAL type. |