* infohack.el: Don't fiddle with the `features' variable;
authoryamaoka <yamaoka>
Mon, 27 Oct 2003 05:17:43 +0000 (05:17 +0000)
committeryamaoka <yamaoka>
Mon, 27 Oct 2003 05:17:43 +0000 (05:17 +0000)
 fix directories relative to the ../lisp directory in `load-path'.

ChangeLog
texi/infohack.el

index 267e6b2..49c1c4a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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'.
index 4dbea85..89bad3f 100644 (file)
 
 ;;; 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 ()