all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <kevin.d.rodgers@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Functions that need X
Date: Mon, 10 Jan 2011 17:24:25 -0700	[thread overview]
Message-ID: <igg800$9vf$2@dough.gmane.org> (raw)
In-Reply-To: <87sjxcv2ld.fsf@Compaq.site>

On 1/1/11 12:35 PM, Cecil Westerhof wrote:
> I have a lot of functionality written for my Emacs. I was asked to
> maintain a server for a friend. I installed Emacs there and put my
> Emacs functionality there also. But some things are depending on X.
> Because of this I made those depended working with X. In the start of
> my .emacs I have:
>      (defconst +using-X+ (getenv "DISPLAY"))
>
> And where I use X-functionality (not much at the moment) I have:
>      (unless (not +using-X+)
>        (set-scroll-bar-mode 'right)
>        (tool-bar-mode -1))

(when (eq window-system 'x)
    ...)

or probably just

(when window-system
    ...)

-- 
Kevin Rodgers
Denver, Colorado, USA




      parent reply	other threads:[~2011-01-11  0:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-01 19:35 Functions that need X Cecil Westerhof
2011-01-01 21:32 ` Barry Margolin
2011-01-01 21:58 ` Tim X
2011-01-01 23:29   ` Barry Margolin
2011-01-02 22:46     ` Tim X
2011-01-03 14:34       ` Cecil Westerhof
2011-01-03 15:55         ` Drew Adams
2011-01-03  4:52     ` Stefan Monnier
2011-01-03  5:45       ` Tim X
2011-01-03 14:46   ` Cecil Westerhof
2011-01-11  0:24 ` Kevin Rodgers [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='igg800$9vf$2@dough.gmane.org' \
    --to=kevin.d.rodgers@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.