fix directories relative to the ../lisp directory in `load-path'.
+2003-10-27  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * texi/infohack.el: Don't fiddle with the `features' variable;
+       fix directories relative to the ../lisp directory in `load-path'.
+
 2003-10-24  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * Makefile.in (install-package): Don't call `compose-package'.
 
 
 ;;; Code:
 
-(let ((default-directory (expand-file-name "../lisp/"))
-      (features (cons 'w3-forms (copy-sequence features))))
+(let ((default-directory (expand-file-name "../lisp/")))
   ;; Adjust `load-path' for APEL.
-  (load-file "dgnushack.el"))
+  (load-file "dgnushack.el")
+  ;; Replace "./" with "../lisp/" in `load-path'.
+  (setq load-path (mapcar 'expand-file-name load-path)))
 (load-file (expand-file-name "ptexinfmt.el" "./"))
 
 (defun infohack-remove-unsupported ()