From 1d0b9093817619433b92de43ee605bb436457641 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 27 Oct 2003 05:17:54 +0000 Subject: [PATCH] * infohack.el: Don't fiddle with the `features' variable; fix directories relative to the ../lisp directory in `load-path'. --- ChangeLog | 5 +++++ texi/infohack.el | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index aed616f..324aedc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-10-27 Katsumi Yamaoka + + * texi/infohack.el: Don't fiddle with the `features' variable; + fix directories relative to the ../lisp directory in `load-path'. + 2003-07-28 TSUCHIYA Masatoshi * lisp/gnus-namazu.el (gnus-namazu/group-prefixed-name): Return diff --git a/texi/infohack.el b/texi/infohack.el index 655c441..c9d06b1 100644 --- a/texi/infohack.el +++ b/texi/infohack.el @@ -25,10 +25,11 @@ ;;; 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 () -- 1.7.10.4