comparison etc/PROBLEMS @ 35152:320f1445907b

*** empty log message ***
author Dave Love <fx@gnu.org>
date Mon, 08 Jan 2001 20:35:18 +0000
parents cb8e77c36175
children c112ca694609
comparison
equal deleted inserted replaced
35151:d5dada0b18de 35152:320f1445907b
44 * Crashes when displaying uncompressed GIFs with version 44 * Crashes when displaying uncompressed GIFs with version
45 libungif-4.1.0 are resolved by using version libungif-4.1.0b1. 45 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
53 so, you have hit a compiler bug. Please make sure to re-configure 77 so, you have hit a compiler bug. Please make sure to re-configure
54 Emacs so that it isn't compiled with `-O5'. 78 Emacs so that it isn't compiled with `-O5'.