소스 검색

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