diff options
| author | Dave Love | 2003-05-21 22:28:54 +0000 |
|---|---|---|
| committer | Dave Love | 2003-05-21 22:28:54 +0000 |
| commit | c67de8bae7a302efad1db433de6fc455c6602d62 (patch) | |
| tree | 8ab0d161e3d56fe3a06c2ffea18fd6c82cc37010 | |
| parent | 20888a623d6ca635b2bebe12ec589f018ba00bd1 (diff) | |
| download | emacs-c67de8bae7a302efad1db433de6fc455c6602d62.tar.gz emacs-c67de8bae7a302efad1db433de6fc455c6602d62.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 11 | ||||
| -rw-r--r-- | lisp/ChangeLog | 10 | ||||
| -rw-r--r-- | src/ChangeLog | 12 |
3 files changed, 29 insertions, 4 deletions
| @@ -1,4 +1,4 @@ | |||
| 1 | GNU Emacs NEWS -- history of user-visible changes. 2001-03-15 | 1 | GNU Emacs NEWS -- history of user-visible changes. 2003-05-21 |
| 2 | Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. | 2 | Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. |
| 3 | See the end for copying conditions. | 3 | See the end for copying conditions. |
| 4 | 4 | ||
| @@ -88,6 +88,12 @@ See the files mac/README and mac/INSTALL for build instructions. | |||
| 88 | 88 | ||
| 89 | * Changes in Emacs 21.4 | 89 | * Changes in Emacs 21.4 |
| 90 | 90 | ||
| 91 | ** The X resource useXIM can be used to turn off use of XIM, which may | ||
| 92 | speed up Emacs with slow networking to the X server. | ||
| 93 | |||
| 94 | ** `describe-char' can show data from the Unicode database file. See | ||
| 95 | user option `unicode-data'. | ||
| 96 | |||
| 91 | ** `undo-only' (bound to C-x U) does an undo which does not redo any | 97 | ** `undo-only' (bound to C-x U) does an undo which does not redo any |
| 92 | previous undo. | 98 | previous undo. |
| 93 | 99 | ||
| @@ -1315,9 +1321,6 @@ on garbage collection. | |||
| 1315 | ** New function `decode-coding-inserted-region' decodes a region as if | 1321 | ** New function `decode-coding-inserted-region' decodes a region as if |
| 1316 | it is read from a file without decoding. | 1322 | it is read from a file without decoding. |
| 1317 | 1323 | ||
| 1318 | ** New function `optimize-char-coding-system-table' can be called | ||
| 1319 | after making changes to `char-coding-system-table'. | ||
| 1320 | |||
| 1321 | ** New function `langinfo' accesses locale information. | 1324 | ** New function `langinfo' accesses locale information. |
| 1322 | 1325 | ||
| 1323 | ** `save-selected-window' now saves and restores the selected window | 1326 | ** `save-selected-window' now saves and restores the selected window |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b8b1a2778b9..04c8b488364 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2003-05-21 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * descr-text.el (unicodedata-file): New. | ||
| 4 | (unicode-data): New (adapted from unicode branch). | ||
| 5 | (describe-char): Use it. Print char's unicode differently. Avoid | ||
| 6 | elements with null cadr when formatting list. Clarify error | ||
| 7 | message when used in Help buffer. | ||
| 8 | (button): Require when compiling. | ||
| 9 | (describe-char-after): Alias for obsolete command. | ||
| 10 | |||
| 1 | 2003-05-21 Nick Roberts <nick@nick.uklinux.net> | 11 | 2003-05-21 Nick Roberts <nick@nick.uklinux.net> |
| 2 | 12 | ||
| 3 | * gdb-ui.el (gud-gdba-command-name): Use -noasync option for Gdb | 13 | * gdb-ui.el (gud-gdba-command-name): Use -noasync option for Gdb |
diff --git a/src/ChangeLog b/src/ChangeLog index 1a41ae88614..ff2fddcb866 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2003-05-21 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | [Merged from unicode branch.] | ||
| 4 | |||
| 5 | * xfns.c (x_window, x_window): Use use_xim. | ||
| 6 | |||
| 7 | * xterm.c (use_xim): Initialize. | ||
| 8 | (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim. | ||
| 9 | (x_term_init): Maybe set use_xim. | ||
| 10 | |||
| 11 | * xterm.h (use_xim) [HAVE_X_I18N]: Declare. | ||
| 12 | |||
| 1 | 2003-05-21 Jason Rumney <jasonr@gnu.org> | 13 | 2003-05-21 Jason Rumney <jasonr@gnu.org> |
| 2 | 14 | ||
| 3 | * unexw32.c (_start): Remove _fmode initialization. | 15 | * unexw32.c (_start): Remove _fmode initialization. |