diff options
| author | Gerd Moellmann | 2000-02-17 16:18:09 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-02-17 16:18:09 +0000 |
| commit | d621caf7c8d047a3e25da125b967b4d4ea4beaad (patch) | |
| tree | 7ce69a25f3566acaa67f82e44b0739cec1a2cf54 | |
| parent | 2313132fd24debf85bae373902532d9916fdb073 (diff) | |
| download | emacs-d621caf7c8d047a3e25da125b967b4d4ea4beaad.tar.gz emacs-d621caf7c8d047a3e25da125b967b4d4ea4beaad.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | man/ack.texi | 5 | ||||
| -rw-r--r-- | man/killing.texi | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 2 |
4 files changed, 15 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 275f89e5aa1..e57e434a901 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-02-17 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax | ||
| 4 | of `*' to handle `(* ... *)' comments. | ||
| 5 | |||
| 1 | 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * faces.el (list-faces-display): Use display-mouse-p instead of | 8 | * faces.el (list-faces-display): Use display-mouse-p instead of |
| @@ -16,7 +21,7 @@ | |||
| 16 | 21 | ||
| 17 | 2000-02-17 Gerd Moellmann <gerd@gnu.org> | 22 | 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
| 18 | 23 | ||
| 19 | * dired-aux.el (dired-do-copy): Remove spurios character.`n' | 24 | * dired-aux.el (dired-do-copy): Remove spurious character.`n' |
| 20 | within the code. | 25 | within the code. |
| 21 | 26 | ||
| 22 | 2000-02-16 Dave Love <fx@gnu.org> | 27 | 2000-02-16 Dave Love <fx@gnu.org> |
diff --git a/man/ack.texi b/man/ack.texi index 74aee82319c..b3e5b3a4e03 100644 --- a/man/ack.texi +++ b/man/ack.texi | |||
| @@ -897,6 +897,11 @@ John Wiegley wrote @file{align.el}, a set of commands for aligning | |||
| 897 | text according to regular-expression based rules. | 897 | text according to regular-expression based rules. |
| 898 | @end itemize | 898 | @end itemize |
| 899 | 899 | ||
| 900 | @item | ||
| 901 | INOUE Seiichiro improved Emacs' XIM support. Thanks to HORIKAWA Hisashi | ||
| 902 | for suggestions. | ||
| 903 | @end itemize | ||
| 904 | |||
| 900 | Others too numerous to mention have reported and fixed bugs, and added | 905 | Others too numerous to mention have reported and fixed bugs, and added |
| 901 | features to many parts of Emacs. We thank them for their generosity as | 906 | features to many parts of Emacs. We thank them for their generosity as |
| 902 | well. | 907 | well. |
diff --git a/man/killing.texi b/man/killing.texi index ef5e51a14a0..6dc62311ebc 100644 --- a/man/killing.texi +++ b/man/killing.texi | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | @c This is part of the Emacs manual. | 1 | @c This is part of the Emacs manual. |
| 2 | @c Copyright (C) 1985, 86, 87, 93, 94, 95, 1997 Free Software Foundation, Inc. | 2 | @c Copyright (C) 1985,86,87,93,94,95,97,2000 Free Software Foundation, Inc. |
| 3 | @c See file emacs.texi for copying conditions. | 3 | @c See file emacs.texi for copying conditions. |
| 4 | @iftex | 4 | @iftex |
| 5 | @chapter Killing and Moving Text | 5 | @chapter Killing and Moving Text |
| @@ -477,7 +477,7 @@ Clear the region-rectangle by replacing its contents with spaces. | |||
| 477 | @item M-x delete-whitespace-rectangle | 477 | @item M-x delete-whitespace-rectangle |
| 478 | Delete whitespace in each of the lines on the specified rectangle, | 478 | Delete whitespace in each of the lines on the specified rectangle, |
| 479 | starting from the left edge column of the rectangle. | 479 | starting from the left edge column of the rectangle. |
| 480 | @item C-x r t @key{RET} @var{string} @key{RET} | 480 | @item C-x r t @var{string} @key{RET} |
| 481 | Insert @var{string} on each line of the region-rectangle | 481 | Insert @var{string} on each line of the region-rectangle |
| 482 | (@code{string-rectangle}). | 482 | (@code{string-rectangle}). |
| 483 | @end table | 483 | @end table |
diff --git a/src/ChangeLog b/src/ChangeLog index ff9c6661004..c82c941fe81 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2000-02-17 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-02-17 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef. | ||
| 4 | |||
| 3 | * alloc.c (enum mem_type): Compile unconditionally. | 5 | * alloc.c (enum mem_type): Compile unconditionally. |
| 4 | 6 | ||
| 5 | 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il> | 7 | 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il> |