diff options
| author | Dave Love | 2001-01-08 20:35:18 +0000 |
|---|---|---|
| committer | Dave Love | 2001-01-08 20:35:18 +0000 |
| commit | a953a8d365c4ccf951ff6feaf36411ab4a2f561c (patch) | |
| tree | ec20a3c5e12144a7236bd5f89a951ab0e692ccb3 | |
| parent | 234f1ae97987adec6f19aaa5cb6b5fb3075636f5 (diff) | |
| download | emacs-a953a8d365c4ccf951ff6feaf36411ab4a2f561c.tar.gz emacs-a953a8d365c4ccf951ff6feaf36411ab4a2f561c.zip | |
*** empty log message ***
| -rw-r--r-- | etc/PROBLEMS | 26 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 18 |
2 files changed, 43 insertions, 1 deletions
diff --git a/etc/PROBLEMS b/etc/PROBLEMS index b24a6c75504..e1226f2c47b 100644 --- a/etc/PROBLEMS +++ b/etc/PROBLEMS | |||
| @@ -46,7 +46,31 @@ libungif-4.1.0 are resolved by using version libungif-4.1.0b1. | |||
| 46 | 46 | ||
| 47 | * The W3 package (either from from the CVS sources or the last | 47 | * The W3 package (either from from the CVS sources or the last |
| 48 | release) currently (2000-12-14) doesn't run properly with Emacs 21 and | 48 | release) currently (2000-12-14) doesn't run properly with Emacs 21 and |
| 49 | needs work. | 49 | needs work. This patch is reported to make w3-4.0pre.46 work: |
| 50 | |||
| 51 | diff -aur --new-file w3-4.0pre.46-orig/lisp/w3-display.el w3-4.0pre.46-new/lisp/w3-display.el | ||
| 52 | --- w3-4.0pre.46-orig/lisp/w3-display.el Sun Nov 14 22:00:12 1999 | ||
| 53 | +++ w3-4.0pre.46-new/lisp/w3-display.el Thu Dec 14 14:59:15 2000 | ||
| 54 | @@ -181,7 +181,8 @@ | ||
| 55 | (dispatch-event (next-command-event))) | ||
| 56 | (error nil)))) | ||
| 57 | (t | ||
| 58 | - (if (and (not (sit-for 0)) (input-pending-p)) | ||
| 59 | + ;; modified for GNU Emacs 21 by bob@rattlesnake.com on 2000 Dec 14 | ||
| 60 | + (if (and (not (sit-for 0)) nil) | ||
| 61 | (condition-case () | ||
| 62 | (progn | ||
| 63 | (setq w3-pause-keystroke | ||
| 64 | diff -aur --new-file w3-4.0pre.46-orig/lisp/w3-e21.el w3-4.0pre.46-new/lisp/w3-e21.el | ||
| 65 | --- w3-4.0pre.46-orig/lisp/w3-e21.el Thu Jan 1 00:00:00 1970 | ||
| 66 | +++ w3-4.0pre.46-new/lisp/w3-e21.el Thu Dec 14 14:54:58 2000 | ||
| 67 | @@ -0,0 +1,5 @@ | ||
| 68 | +;;; w3-e21.el --- ** required for GNU Emacs 21 ** | ||
| 69 | +;; Added by bob@rattlesnake.com on 2000 Dec 14 | ||
| 70 | + | ||
| 71 | +(require 'w3-e19) | ||
| 72 | +(provide 'w3-e21) | ||
| 73 | |||
| 50 | 74 | ||
| 51 | * On AIX, if linking fails because libXbsd isn't found, check if you | 75 | * On AIX, if linking fails because libXbsd isn't found, check if you |
| 52 | are compiling with the system's `cc' and CFLAGS containing `-O5'. If | 76 | are compiling with the system's `cc' and CFLAGS containing `-O5'. If |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 3e549714006..068d07833d9 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2001-01-08 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * mm-encode.el (mm-qp-or-base64): Don't base64 for the sake of a | ||
| 4 | single character. | ||
| 5 | |||
| 6 | * mm-util.el (mm-mime-mule-charset-alist): Add Latin-{8,9}. | ||
| 7 | |||
| 8 | * message.el: Doc and message fixes. | ||
| 9 | (message-send-rename-function) | ||
| 10 | (message-make-forward-subject-function) | ||
| 11 | (message-send-mail-function, message-reply-to-function) | ||
| 12 | (message-wide-reply-to-function, message-followup-to-function) | ||
| 13 | (message-distribution-function, message-auto-save-directory): Fix | ||
| 14 | :type. | ||
| 15 | |||
| 16 | * gnus/mml.el (mml-parse-1): Frob mml-confirmation-set when | ||
| 17 | proceeding after warnings. Amend multipart warning message. | ||
| 18 | |||
| 1 | 2001-01-04 Dave Love <fx@gnu.org> | 19 | 2001-01-04 Dave Love <fx@gnu.org> |
| 2 | 20 | ||
| 3 | * gnus-util.el (nnmail-pathname-coding-system): Defvar when | 21 | * gnus-util.el (nnmail-pathname-coding-system): Defvar when |