From c84193ea3b9f5d6c95dbf85cd50034531f5a43b2 Mon Sep 17 00:00:00 2001 From: Michael Olson Date: Tue, 21 Feb 2006 23:19:36 +0000 Subject: [PATCH] muse-texinfo: Fix link suffix. * lisp/muse-texinfo.el: Specify :link-suffix for info and info-pdf styles. This should fix a bug where links in published info files use an incorrect extension. Thanks to Hans Ekbrand for the report! git-archimport-id: mwolson@gnu.org--2006/muse--main--1.0--patch-18 --- ChangeLog.2006 | 15 +++++++++++++++ lisp/muse-texinfo.el | 2 ++ 2 files changed, 17 insertions(+) diff --git a/ChangeLog.2006 b/ChangeLog.2006 index 0062026..c4057ab 100644 --- a/ChangeLog.2006 +++ b/ChangeLog.2006 @@ -2,6 +2,21 @@ # arch-tag: automatic-ChangeLog--mwolson@gnu.org--2006/muse--main--1.0 # +2006-02-21 23:19:36 GMT Michael Olson patch-18 + + Summary: + muse-texinfo: Fix link suffix. + Revision: + muse--main--1.0--patch-18 + + * lisp/muse-texinfo.el: Specify :link-suffix for info and info-pdf + styles. This should fix a bug where links in published info files use + an incorrect extension. Thanks to Hans Ekbrand for the report! + + modified files: + ChangeLog.2006 lisp/muse-texinfo.el + + 2006-02-16 21:54:11 GMT Michael Olson patch-17 Summary: diff --git a/lisp/muse-texinfo.el b/lisp/muse-texinfo.el index b82f4e0..dab14f4 100644 --- a/lisp/muse-texinfo.el +++ b/lisp/muse-texinfo.el @@ -278,11 +278,13 @@ These are applied to URLs." (muse-derive-style "info" "texi" :final 'muse-texinfo-info-generate + :link-suffix 'muse-texinfo-info-extension :osuffix 'muse-texinfo-info-extension :browser 'info) (muse-derive-style "info-pdf" "texi" :final 'muse-texinfo-pdf-generate + :link-suffix 'muse-texinfo-pdf-extension :osuffix 'muse-texinfo-pdf-extension :browser 'muse-texinfo-pdf-browse-file)) -- 2.11.4.GIT