Date: Wed, 7 Aug 2002 07:57:19 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Alexandru Cardaniuc cc: djgpp AT delorie DOT com Subject: Re: Custom Key Bindings In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Tue, 6 Aug 2002, Alexandru Cardaniuc wrote: > I created a file _infokey in c:\djgpp\bin\ > compiled it with the infokey command and got the _info file in the same > directory. > > The trouble is that the info program doesn't see this file. When invoking info > my customizations don't work. Even though I invoke info.exe from the same > directory (c:\djgpp\bin\info.exe). That's because info.exe looks for that file in the following places: - as a file name that's the value of the INFOKEY environment variable - in the directory pointed to by the HOME environment variable - in the current working directory This does not include the c:\djgpp\bin directory, so your file is not found. > When reading documentation I came across a notice about HOME variable. What is > it? How can I make info read _info file ? Either set INFOKEY=c:\djgpp\bin\_info or set HOME to point to some directory and put _info there.