From 82b4b8a98cda22ec657d1fce5bd2f9d294c64e35 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 30 May 2015 12:29:50 +0200 Subject: [PATCH] ox-texinfo: Refer to "Top" instead of "top" * lisp/ox-texinfo.el (org-texinfo-link): Refer to "Top" instead of "top". --- lisp/ox-texinfo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el index f16b6d357..259cc6146 100644 --- a/lisp/ox-texinfo.el +++ b/lisp/ox-texinfo.el @@ -1015,7 +1015,7 @@ INFO is a plist holding contextual information. See ((equal type "info") (let* ((info-path (split-string path "[:#]")) (info-manual (car info-path)) - (info-node (or (cadr info-path) "top")) + (info-node (or (cadr info-path) "Top")) (title (or desc ""))) (format "@ref{%s,%s,,%s,}" info-node title info-manual))) ((string= type "mailto") -- 2.11.4.GIT