Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Problem setting-up Emacs & Links WWW browser
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
A. Kong  
View profile  
 More options Nov 10 2012, 3:25 pm
Newsgroups: gnu.emacs.help
From: "A. Kong" <akagik...@gmail.com>
Date: Sat, 10 Nov 2012 15:25:52 -0500
Local: Sat, Nov 10 2012 3:25 pm
Subject: Problem setting-up Emacs & Links WWW browser
Hello,

    The official Links mailing list seems to be down, so I thought I'd
ask here.

xterm displays this error when I try to load a link in emacs:

        /usr/bin/xterm: Can't execvp links: No such file or directory

    Where to I make the edit so that Emacs knows where Links is located?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Yves Baumes  
View profile  
 More options Nov 11 2012, 5:48 am
Newsgroups: gnu.emacs.help
From: Yves Baumes <ybau...@gmail.com>
Date: Sun, 11 Nov 2012 11:47:56 +0100
Local: Sun, Nov 11 2012 5:47 am
Subject: Re: Problem setting-up Emacs & Links WWW browser

"A. Kong" <akagik...@gmail.com> writes:
> Hello,

Hi!

>     The official Links mailing list seems to be down, so I thought I'd
> ask here.

> xterm displays this error when I try to load a link in emacs:

>         /usr/bin/xterm: Can't execvp links: No such file or directory

>     Where to I make the edit so that Emacs knows where Links is located?

First, make sure links is installed on your device :-).

Then locate it in your terminal, with a command like `which links` (or
`type links` if I remember correctly for a bash shell).

Then in Emacs, look into the 'exec-path variable. To do so, invoke the
'describe-variable function with the following key sequence: "C-h v". A
prompt will ask you which variable you want it to describe, type in the
variable name : "exec-path" and push enter.

A new window should pop up, its content must look like:
----
exec-path is a variable defined in `C source code'.
Its value is
("/usr/bin" "/bin" "/usr/sbin" "/sbin" "/usr/local/bin" "/usr/X11/bin"
"/opt/local/bin" "/usr/local/git/bin" ...
----
(I won't paste the whole content here)

The directory containing links must not be present. You must add it
yourself, with somethink like:

(setq exec-path (append exec-path '("/path-to-the-links-directory/")))

Copy/paste this line in you scratch buffer and execute it, that is go to
the end of the line and type in the following sequence: "C-x C-e". You
must see the new 'exec-path value appearing in the echo area, at the
bottom of your Emacs' frame. If you're not sure or if the result
vanished before you had the opportunity to check, just re-launch the
'describe-variable key sequence. As told previously it is "C-h v" then
type in "exec-path".

If you want the modification to be permanent, copy/paste "(setq ...)" line in
your .emacs file.

Regards
Yves


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »