aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-29 12:26:18 +0000
committerGerd Moellmann2000-12-29 12:26:18 +0000
commit49172314026bc80ccaa4093bea957fb2296e5131 (patch)
treed0226034615dd594371a8087ccdb6de9ae596cfd
parentbde4c7ce900ad7efdb74e79d57df3852c6e41006 (diff)
downloademacs-49172314026bc80ccaa4093bea957fb2296e5131.tar.gz
emacs-49172314026bc80ccaa4093bea957fb2296e5131.zip
*** empty log message ***
-rw-r--r--etc/ChangeLog6
-rw-r--r--etc/PROBLEMS5
-rw-r--r--lisp/ChangeLog7
-rw-r--r--man/faq.texi2
-rw-r--r--man/sending.texi4
5 files changed, 21 insertions, 3 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 1c827957c1b..e534aa284ed 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,9 @@
12000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2
3 * ps-prin1.ps: Handle form feed better when ps-zebra-stripe-follow
4 is non-nil.
5 (printZebra, BeginPage): Code fix.
6
12000-12-15 Miles Bader <miles@gnu.org> 72000-12-15 Miles Bader <miles@gnu.org>
2 8
3 * DEBUG: Add note aboute using `inverse-video' to detect excessive 9 * DEBUG: Add note aboute using `inverse-video' to detect excessive
diff --git a/etc/PROBLEMS b/etc/PROBLEMS
index c2048496bcf..b2fa8dd29c1 100644
--- a/etc/PROBLEMS
+++ b/etc/PROBLEMS
@@ -1,6 +1,11 @@
1This file describes various problems that have been encountered 1This file describes various problems that have been encountered
2in compiling, installing and running GNU Emacs. 2in compiling, installing and running GNU Emacs.
3 3
4* When using Xaw3d scroll bars without arrows, the very first mouse
5click in a scroll bar might be ignored by the scroll bar widget. This
6is probably a bug in Xaw3d; when Xaw3d is compiled with arrows, the
7problem disappears.
8
4* Some accented ISO-8859-1 characters or umlauts are displayed as | or _. 9* Some accented ISO-8859-1 characters or umlauts are displayed as | or _.
5 10
6Try other font set sizes (S-mouse-1). If the problem persists with 11Try other font set sizes (S-mouse-1). If the problem persists with
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3dddc51d0ba..ecafc15abf6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12000-12-29 Gerd Moellmann <gerd@gnu.org>
2
3 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
4 Use mail-mode-hook instead of mail-setup-hook. Otherwise
5 continuing an interrupted message with C-u C-x m for instence,
6 winds up in Mail mode without abbrevs.
7
12000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br> 82000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2 9
3 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is 10 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
diff --git a/man/faq.texi b/man/faq.texi
index 3d5281950c2..6a6ad65afa9 100644
--- a/man/faq.texi
+++ b/man/faq.texi
@@ -4892,7 +4892,7 @@ If you like, you can expand mail aliases as abbrevs, as soon as you
4892type them in. To enable this feature, execute the following: 4892type them in. To enable this feature, execute the following:
4893 4893
4894@lisp 4894@lisp
4895(add-hook 'mail-setup-hook 'mail-abbrevs-setup) 4895(add-hook 'mail-mode-hook 'mail-abbrevs-setup)
4896@end lisp 4896@end lisp
4897 4897
4898Note that the aliases are expanded automatically only after you type 4898Note that the aliases are expanded automatically only after you type
diff --git a/man/sending.texi b/man/sending.texi
index faf9d8eaff8..343624bacce 100644
--- a/man/sending.texi
+++ b/man/sending.texi
@@ -323,7 +323,7 @@ you type them in (@pxref{Abbrevs}). To enable this feature, execute the
323following: 323following:
324 324
325@example 325@example
326(add-hook 'mail-setup-hook 'mail-abbrevs-setup) 326(add-hook 'mail-mode-hook 'mail-abbrevs-setup)
327@end example 327@end example
328 328
329@noindent 329@noindent
@@ -349,7 +349,7 @@ afterward. However, you can rebind @kbd{C-n} and @kbd{M->} to cause
349expansion as well. Here's how to do that: 349expansion as well. Here's how to do that:
350 350
351@smallexample 351@smallexample
352(add-hook 'mail-setup-hook 352(add-hook 'mail-mode-hook
353 (lambda () 353 (lambda ()
354 (substitute-key-definition 354 (substitute-key-definition
355 'next-line 'mail-abbrev-next-line 355 'next-line 'mail-abbrev-next-line