浏览代码

ox-texinfo: Refer to "Top" instead of "top"

* lisp/ox-texinfo.el (org-texinfo-link): Refer to "Top" instead of
  "top".
Nicolas Goaziou 9 年之前
父节点
当前提交
82b4b8a98c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lisp/ox-texinfo.el

+ 1 - 1
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")