1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: fix info path to be compliant with FHS.
Origin: vendor
Author: Junichi Uekawa <dancer@debian.org>
Index: yatex/yatexhlp.el
===================================================================
--- yatex.orig/yatexhlp.el 2012-02-11 23:26:52.680555558 +0900
+++ yatex/yatexhlp.el 2012-02-11 23:27:05.620619724 +0900
@@ -14,7 +14,7 @@
((string-match "\\.app/" doc-directory) ;For Emacs.app(Darwin)
(expand-file-name "../site-lisp/yatex" doc-directory))
(YaTeX-emacs-19
- (expand-file-name "../../site-lisp/yatex" doc-directory))
+ (expand-file-name "/usr/share/emacs/site-lisp/yatex" doc-directory))
(t exec-directory))))
(defvar YaTeX-help-file
(expand-file-name help-file help-dir)
|