home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / languages / elisp / packages / input-remapping / text0006.txt < prev    next >
Encoding:
Text File  |  1990-07-22  |  954 b   |  33 lines

  1.  
  2.     HP/ISI input remapping files:  Part 6 of 8
  3.  
  4.     These are differences relative to the original lisp/term/bobcat.el
  5.     in GNU emacs version 18.54.
  6.  
  7.     Changes were to choose and load keyboard and mouse customization
  8.     either from the user's home directory or from the lisp/term
  9.     directory.  This provides a way for ambitious users to supply
  10.     whatever setup they please in place of the standard setup.
  11.  
  12.     Motivation for this comes from the fact that the standard
  13.     setup files are big enough to be slow to load.  This also
  14.     makes it desirable to use byte-compiled files for the
  15.     standard defaults.
  16.  
  17.  
  18. ------------------------------  Cut  Here  --------------------------------
  19. 11a12,22
  20. > ;    Local standard customization for X11  (Paul Raveling/ISI):
  21. > (if (file-exists-p "~/.emacs_kbd")
  22. >     (load "~/.emacs_kbd")
  23. >     (load "term/default_kbd"))
  24. > (if (file-exists-p "~/.emacs_mouse")
  25. >     (load "~/.emacs_mouse")
  26. >     (load "term/default_mouse"))
  27.  
  28.  
  29.