Would a greater understanding of X11 server/client system be required
to solve this problem, or am I still missing something else?
I am using...
Debian Etch
gnome-terminal
emacs 22.1.1
thanks,
-Thr4wn
Can you start other X programs using the same terminal? If so, you may
have installed the emacs22-nox package instead of the emacs22-gtk
package. emacs22-nox is the version without X support.
--
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/
I am able to start any x program (like iceweasel) from that psuedo-
terminal. Is there some way to determine if I have the nox version?
-Thr4wn
Check whether the emacs executable is linked with the X libraries
(sorry, I don't know how to do that on your platform).
--
Kevin Rodgers
Denver, Colorado, USA
> On Jul 21, 6:40 pm, Joost Diepenmaat <jo...@zeekat.nl> wrote:
>> Can you start other X programs using the same terminal? If so, you may
>> have installed the emacs22-nox package instead of the emacs22-gtk
>> package. emacs22-nox is the version without X support.
>
> I am able to start any x program (like iceweasel) from that psuedo-
> terminal. Is there some way to determine if I have the nox version?
Since you're on debian, try:
dpkg-query -s emacs22-nox
and
dpkg-query -s emacs22-gtk
The Status: output line of those commands should contain "installed"
for the package that's currently installed (only one of them may be
installed at the same time).
Alternatively, you can try to install emacs22-gtk, which will replace
the emacs22-nox package if that's currently installed:
apt-get update
apt-get install emacs22-gtk
J.
Another thing to consider is the alternatives facility in Debian.
Try
ls -l /etc/alternatives/emacs
And then look up update-alternatives. e.g. You might do this:
/usr/sbin/update-alternatives --display emacs
Thank you, that was the problem :)
-Thr4wn