aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-02-17 16:18:09 +0000
committerGerd Moellmann2000-02-17 16:18:09 +0000
commitd621caf7c8d047a3e25da125b967b4d4ea4beaad (patch)
tree7ce69a25f3566acaa67f82e44b0739cec1a2cf54
parent2313132fd24debf85bae373902532d9916fdb073 (diff)
downloademacs-d621caf7c8d047a3e25da125b967b4d4ea4beaad.tar.gz
emacs-d621caf7c8d047a3e25da125b967b4d4ea4beaad.zip
*** empty log message ***
-rw-r--r--lisp/ChangeLog7
-rw-r--r--man/ack.texi5
-rw-r--r--man/killing.texi4
-rw-r--r--src/ChangeLog2
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 @@
12000-02-17 Gerd Moellmann <gerd@gnu.org>
2
3 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
4 of `*' to handle `(* ... *)' comments.
5
12000-02-17 Eli Zaretskii <eliz@is.elta.co.il> 62000-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
172000-02-17 Gerd Moellmann <gerd@gnu.org> 222000-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
222000-02-16 Dave Love <fx@gnu.org> 272000-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
897text according to regular-expression based rules. 897text according to regular-expression based rules.
898@end itemize 898@end itemize
899 899
900@item
901INOUE Seiichiro improved Emacs' XIM support. Thanks to HORIKAWA Hisashi
902for suggestions.
903@end itemize
904
900Others too numerous to mention have reported and fixed bugs, and added 905Others too numerous to mention have reported and fixed bugs, and added
901features to many parts of Emacs. We thank them for their generosity as 906features to many parts of Emacs. We thank them for their generosity as
902well. 907well.
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
478Delete whitespace in each of the lines on the specified rectangle, 478Delete whitespace in each of the lines on the specified rectangle,
479starting from the left edge column of the rectangle. 479starting 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}
481Insert @var{string} on each line of the region-rectangle 481Insert @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 @@
12000-02-17 Gerd Moellmann <gerd@gnu.org> 12000-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
52000-02-17 Eli Zaretskii <eliz@is.elta.co.il> 72000-02-17 Eli Zaretskii <eliz@is.elta.co.il>