Skip to content Accesskey=4Skip to sub-navigation Accesskey=3View our Accessibility Options MIT Information Systems Home About IS&T Contact IS&T Site Map Search Advanced Search
Getting StartedGetting Services by Topic or Alphabetically Getting Help

On This Page

[Help]

  

Quick Links

Top Level

Related Links

Ask OLC a question

Athena Consulting Homepage

Helpdesk Stock Answers (for Mac/PC questions)


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)))

MIT Home | Getting Started | Getting Services | Getting Help | About IS&T | Accessibility
Ask a technology question or send a comment about this web page.