* Subject: Re: info node missing(auctex-devel)
@ 2011-09-10 0:12 Shiyuan
2011-09-10 7:56 ` suvayu ali
0 siblings, 1 reply; 5+ messages in thread
From: Shiyuan @ 2011-09-10 0:12 UTC (permalink / raw)
To: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 1713 bytes --]
Thanks for reply.
I am using the CVS version. But when I try
(add-to-list 'Info-directory-list "~/repos/el/auctex/doc")
emacs complaints
Symbol's value as variable is void: Info-directory-list
What could go wrong? Thanks.
Shiyuan
------------------------------------------------
Message: 7
Date: Tue, 06 Sep 2011 08:37:19 +0200
From: Tassilo Horn <tassilo@member.fsf.org>
To: help-gnu-emacs@gnu.org
Subject: Re: info node missing(auctex-devel)
Message-ID: <87y5y2tbvk.fsf@thinkpad.tsdh.de>
Content-Type: text/plain
Shiyuan <gshy2014@gmail.com> writes:
Hi Shiyuan,
> I installed a library (auctex-devel). However I cannot see the info
> node when I use C-h i. The information may be missing in the package or I
> did something wrong when I installed the package.
> How does a library usually insert its info node into emacs such that users
> can browse it by C-h i m? How can I identify the problem and fix it?
Thanks.
You have to add the directory containing the info file (or to be more
precise, the dir [directory index] file) to `Info-directory-list'.
That's what I do for AUCTeX from CVS:
--8<---------------cut here---------------start------
------->8---
(add-to-list 'Info-directory-list "~/repos/el/auctex/doc")
--8<---------------cut here---------------end--------------->8---
For generating the info docs, you have to run
$ make docs
in the auctex checkout (probably, "make all" also creates the docs). In
addition, you have to create a directory index in doc/ that lists the 2
manuals (auctex itself plus the preview-latex docs). This can be done
easily like so:
$ pwd
/path/to/auctex
$ cd docs
$ install-info auctex.info dir
$ install-info preview-latex.info dir
HTH,
Tassilo
[-- Attachment #2: Type: text/html, Size: 2443 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Subject: Re: info node missing(auctex-devel)
2011-09-10 0:12 Subject: Re: info node missing(auctex-devel) Shiyuan
@ 2011-09-10 7:56 ` suvayu ali
2011-09-10 15:14 ` Shiyuan
0 siblings, 1 reply; 5+ messages in thread
From: suvayu ali @ 2011-09-10 7:56 UTC (permalink / raw)
To: Shiyuan; +Cc: help-gnu-emacs
Hello Shiyuan,
On Sat, Sep 10, 2011 at 2:12 AM, Shiyuan <gshy2014@gmail.com> wrote:
> Thanks for reply.
> I am using the CVS version. But when I try
> (add-to-list 'Info-directory-list "~/repos/el/auctex/doc")
You have to change the "~/repos/el/auctex/doc" to wherever you installed
auctex info files. Tassilo was simply giving an example from his setup.
Based on your last post I would think the correct sexp should be:
(add-to-list 'Info-default-directory-list
(expand-file-name "/opt/share/info"))
> emacs complaints
> Symbol's value as variable is void: Info-directory-list
> What could go wrong? Thanks.
> Shiyuan
>
GL
--
Suvayu
Open source is the future. It sets us free.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Subject: Re: info node missing(auctex-devel)
2011-09-10 7:56 ` suvayu ali
@ 2011-09-10 15:14 ` Shiyuan
2011-09-10 16:51 ` suvayu ali
0 siblings, 1 reply; 5+ messages in thread
From: Shiyuan @ 2011-09-10 15:14 UTC (permalink / raw)
To: suvayu ali; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 1015 bytes --]
On Sat, Sep 10, 2011 at 2:56 AM, suvayu ali <fatkasuvayu+linux@gmail.com>wrote:
> Hello Shiyuan,
>
> On Sat, Sep 10, 2011 at 2:12 AM, Shiyuan <gshy2014@gmail.com> wrote:
> >> Thanks for reply.
> >> I am using the CVS version. But when I try
> >> (add-to-list 'Info-directory-list "~/repos/el/auctex/doc")
>
> >You have to change the "~/repos/el/auctex/doc" to wherever you >installed
> >auctex info files. Tassilo was simply giving an example from his setup.
> >Based on your last post I would think the correct sexp should be:
>
> I did change the directory to the correct location. What emacs complains is
the Info-directory-list is void. I cannot find the the variable by C-h v.
>(add-to-list 'Info-default-directory-list
> >(expand-file-name "/opt/share/info"))
>
> According to http://www.emacswiki.org/emacs/InfoPath,
Info-default-directory-list will not be used if INFOPATH is defined but
Info-directory-list should always be defined and used. But How comes I
cannot see it? Thanks.
Shiyuan
[-- Attachment #2: Type: text/html, Size: 1731 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Subject: Re: info node missing(auctex-devel)
2011-09-10 15:14 ` Shiyuan
@ 2011-09-10 16:51 ` suvayu ali
2011-09-10 22:32 ` Shiyuan
0 siblings, 1 reply; 5+ messages in thread
From: suvayu ali @ 2011-09-10 16:51 UTC (permalink / raw)
To: Shiyuan; +Cc: help-gnu-emacs
On Sat, Sep 10, 2011 at 5:14 PM, Shiyuan <gshy2014@gmail.com> wrote:
>>(add-to-list 'Info-default-directory-list
>>
>> >(expand-file-name "/opt/share/info"))
>>
> According to http://www.emacswiki.org/emacs/InfoPath,
> Info-default-directory-list will not be used if INFOPATH is defined but
> Info-directory-list should always be defined and used. But How comes I
> cannot see it? Thanks.
Then try something like this very early in your init file instead:
(setenv "INFOPATH" "/opt/share/info:$INFOPATH" t)
> Shiyuan
--
Suvayu
Open source is the future. It sets us free.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Subject: Re: info node missing(auctex-devel)
2011-09-10 16:51 ` suvayu ali
@ 2011-09-10 22:32 ` Shiyuan
0 siblings, 0 replies; 5+ messages in thread
From: Shiyuan @ 2011-09-10 22:32 UTC (permalink / raw)
To: suvayu ali; +Cc: help-gnu-emacs
[-- Attachment #1: Type: text/plain, Size: 956 bytes --]
On Sat, Sep 10, 2011 at 11:51 AM, suvayu ali <fatkasuvayu+linux@gmail.com>wrote:
> On Sat, Sep 10, 2011 at 5:14 PM, Shiyuan <gshy2014@gmail.com> wrote:
> >>(add-to-list 'Info-default-directory-list
> >>
> >> >(expand-file-name "/opt/share/info"))
> >>
> > According to http://www.emacswiki.org/emacs/InfoPath,
> > Info-default-directory-list will not be used if INFOPATH is defined but
> > Info-directory-list should always be defined and used. But How comes I
> > cannot see it? Thanks.
>
> Then try something like this very early in your init file instead:
>
> (setenv "INFOPATH" "/opt/share/info:$INFOPATH" t)
>
By adding this line, the correct location of the info files are in the
Info-directory-list. However, I sill could not find the node AUCTeX under
emacs info mode. And it cannot be located by C-h i m auctex. Is it hidding
deep down some other nodes. But I can see the info by using the linux
command line: info auctex.
Thanks.
[-- Attachment #2: Type: text/html, Size: 1520 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-09-10 22:32 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-10 0:12 Subject: Re: info node missing(auctex-devel) Shiyuan
2011-09-10 7:56 ` suvayu ali
2011-09-10 15:14 ` Shiyuan
2011-09-10 16:51 ` suvayu ali
2011-09-10 22:32 ` Shiyuan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).