diff options
| author | Gerd Moellmann | 2000-09-07 14:43:12 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-09-07 14:43:12 +0000 |
| commit | f46f845b3f32f50a973b382f500711e7ce78137e (patch) | |
| tree | dd72c3b357511dca6f6a9ede324221857204a17a | |
| parent | b0285112e89d1bff14ae88e434252ade9f91febf (diff) | |
| download | emacs-f46f845b3f32f50a973b382f500711e7ce78137e.tar.gz emacs-f46f845b3f32f50a973b382f500711e7ce78137e.zip | |
*** empty log message ***
| -rw-r--r-- | etc/TODO | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 14 |
3 files changed, 15 insertions, 3 deletions
| @@ -32,8 +32,6 @@ | |||
| 32 | same value of this property. | 32 | same value of this property. |
| 33 | ** Discretionary hyphens that disappear at end of line. | 33 | ** Discretionary hyphens that disappear at end of line. |
| 34 | 34 | ||
| 35 | * Implement use of mmap to allocate buffers, when mmap exists. | ||
| 36 | |||
| 37 | * Change the Windows NT menu code | 35 | * Change the Windows NT menu code |
| 38 | so that it handles the deep_p argument and avoids | 36 | so that it handles the deep_p argument and avoids |
| 39 | regenerating the whole menu bar menu tree except | 37 | regenerating the whole menu bar menu tree except |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 26fd0e4e802..ed9dfdd7000 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -8,6 +8,8 @@ | |||
| 8 | 8 | ||
| 9 | 2000-09-07 Gerd Moellmann <gerd@gnu.org> | 9 | 2000-09-07 Gerd Moellmann <gerd@gnu.org> |
| 10 | 10 | ||
| 11 | * faces.el (color-values): Doc fix. | ||
| 12 | |||
| 11 | * faces.el (frame-set-background-mode): Use frame-parameter | 13 | * faces.el (frame-set-background-mode): Use frame-parameter |
| 12 | instead of frame-parameters. | 14 | instead of frame-parameters. |
| 13 | 15 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 73a27f79083..d1cf3aaa514 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2000-09-07 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xfaces.c (smaller_face): Compare font heights with `<' and `>' | ||
| 4 | instead of `!='. | ||
| 5 | |||
| 6 | * lread.c (syms_of_lread): Change value of regexp | ||
| 7 | Vbytecomp_version_regexp to not match some XEmacs-compiled files. | ||
| 8 | |||
| 9 | * xmenu.c (xdialog_show): When looking up the selection in | ||
| 10 | menu_items, take `quote' boundaries into account; this corresponds | ||
| 11 | to a nil ITEM in x-popup-dialog. | ||
| 12 | |||
| 1 | 2000-09-07 Kenichi Handa <handa@etl.go.jp> | 13 | 2000-09-07 Kenichi Handa <handa@etl.go.jp> |
| 2 | 14 | ||
| 3 | * charset.h (MIN_CHARSET_OFFICIAL_DIMENSION1): Define it as 0x80, | 15 | * charset.h (MIN_CHARSET_OFFICIAL_DIMENSION1): Define it as 0x80, |
| @@ -8,7 +20,7 @@ | |||
| 8 | encoding, not decoding. Fix the handling of latin-jisx0201. | 20 | encoding, not decoding. Fix the handling of latin-jisx0201. |
| 9 | Check for the charset katakana-jisx0201 too. | 21 | Check for the charset katakana-jisx0201 too. |
| 10 | (ONE_MORE_CHAR): Call translate_char with CHARSET arg -1. | 22 | (ONE_MORE_CHAR): Call translate_char with CHARSET arg -1. |
| 11 | (detect_coding_sjis): Check the byte sequence more regidly. | 23 | (detect_coding_sjis): Check the byte sequence more rigidly. |
| 12 | 24 | ||
| 13 | 2000-09-07 Gerd Moellmann <gerd@gnu.org> | 25 | 2000-09-07 Gerd Moellmann <gerd@gnu.org> |
| 14 | 26 | ||