Customizing Emacs with X functions
Any X-related code that you want to put in your .emacs file should be
enclosed in elisp which causes it to be called only if you're on an X
workstation, and not if you're dialed in, like so:
(if window-system-version
(progn
(require 'x-mouse)
X-RELATED STUFF GOES HERE
))
For example:
(if window-system-version
(progn
(require 'x-mouse)
(setq x-paste-move-point t)))
|