comparison etc/PROBLEMS @ 43304:f32c4ea712c8

Fixes from Dave Love for W3 and PSGML entries.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 15 Feb 2002 11:24:48 +0000
parents edb30cdd9c57
children 7f7c01afd770
comparison
equal deleted inserted replaced
43303:9e0c8218a33b 43304:f32c4ea712c8
568 If you want to stick with the Cygwin FTP client, you can work around 568 If you want to stick with the Cygwin FTP client, you can work around
569 this problem by putting this in your `.emacs' file: 569 this problem by putting this in your `.emacs' file:
570 570
571 (setq ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v" "--prompt" "") 571 (setq ange-ftp-ftp-program-args '("-i" "-n" "-g" "-v" "--prompt" "")
572 572
573 573 * Some versions of the W3 package released before Emacs 21.1 don't run
574 * The latest released version of the W3 package doesn't run properly 574 properly with Emacs 21. These problems are fixed in W3 version
575 with Emacs 21 and needs work. However, these problems are already 575 4.0pre.47.
576 fixed in W3's CVS. The patch below is reported to make w3-4.0pre.46
577 work.
578
579 Some users report they are unable to byte-compile W3 with Emacs 21.
580 If the patches below don't help to resolve your problems, install the
581 CVS version of W3, which should be compatible with Emacs 21.
582
583 diff -aur --new-file w3-4.0pre.46-orig/lisp/w3-display.el w3-4.0pre.46-new/lisp/w3-display.el
584 --- w3-4.0pre.46-orig/lisp/w3-display.el Sun Nov 14 22:00:12 1999
585 +++ w3-4.0pre.46-new/lisp/w3-display.el Thu Dec 14 14:59:15 2000
586 @@ -181,7 +181,8 @@
587 (dispatch-event (next-command-event)))
588 (error nil))))
589 (t
590 - (if (and (not (sit-for 0)) (input-pending-p))
591 + ;; modified for GNU Emacs 21 by bob@rattlesnake.com on 2000 Dec 14
592 + (if (and (not (sit-for 0)) nil)
593 (condition-case ()
594 (progn
595 (setq w3-pause-keystroke
596 diff -aur --new-file w3-4.0pre.46-orig/lisp/w3-e21.el w3-4.0pre.46-new/lisp/w3-e21.el
597 --- w3-4.0pre.46-orig/lisp/w3-e21.el Thu Jan 1 00:00:00 1970
598 +++ w3-4.0pre.46-new/lisp/w3-e21.el Thu Dec 14 14:54:58 2000
599 @@ -0,0 +1,5 @@
600 +;;; w3-e21.el --- ** required for GNU Emacs 21 **
601 +;; Added by bob@rattlesnake.com on 2000 Dec 14
602 +
603 +(require 'w3-e19)
604 +(provide 'w3-e21)
605 576
606 * On AIX, if linking fails because libXbsd isn't found, check if you 577 * On AIX, if linking fails because libXbsd isn't found, check if you
607 are compiling with the system's `cc' and CFLAGS containing `-O5'. If 578 are compiling with the system's `cc' and CFLAGS containing `-O5'. If
608 so, you have hit a compiler bug. Please make sure to re-configure 579 so, you have hit a compiler bug. Please make sure to re-configure
609 Emacs so that it isn't compiled with `-O5'. 580 Emacs so that it isn't compiled with `-O5'.
613 This could happen if you use /bin/c89 as your compiler, instead of 584 This could happen if you use /bin/c89 as your compiler, instead of
614 the default `cc'. /bin/c89 treats certain warnings, such as benign 585 the default `cc'. /bin/c89 treats certain warnings, such as benign
615 redefinitions of macros, as errors, and fails the build. A solution 586 redefinitions of macros, as errors, and fails the build. A solution
616 is to use the default compiler `cc'. 587 is to use the default compiler `cc'.
617 588
618 * The PSGML package uses the obsolete variables 589 * Old versions of the PSGML package use the obsolete variables
619 `before-change-function' and `after-change-function', which are no 590 `before-change-function' and `after-change-function', which are no
620 longer used by Emacs. Please use PSGML 1.2.3 or later. 591 longer used by Emacs. Please use PSGML 1.2.3 or later.
621 592
622 * The LDAP support rely on ldapsearch program from OpenLDAP version 2. 593 * The LDAP support rely on ldapsearch program from OpenLDAP version 2.
623 594