Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!apple!usc!venera.isi.edu!raveling From: raveling@venera.isi.edu (Paul Raveling) Newsgroups: gnu.emacs Subject: Input remapping, Part 6 of 8: bobcat.el Message-ID: <8723@venera.isi.edu> Date: 22 Jun 89 20:18:29 GMT Reply-To: raveling@venera.isi.edu (Paul Raveling) Distribution: gnu Organization: USC-Information Sciences Institute Lines: 30 HP/ISI input remapping files: Part 6 of 8 These are differences relative to the original lisp/term/bobcat.el in GNU emacs version 18.54. Changes were to choose and load keyboard and mouse customization either from the user's home directory or from the lisp/term directory. This provides a way for ambitious users to supply whatever setup they please in place of the standard setup. Motivation for this comes from the fact that the standard setup files are big enough to be slow to load. This also makes it desirable to use byte-compiled files for the standard defaults. ------------------------------ Cut Here -------------------------------- 11a12,22 > > > ; Local standard customization for X11 (Paul Raveling/ISI): > > (if (file-exists-p "~/.emacs_kbd") > (load "~/.emacs_kbd") > (load "term/default_kbd")) > > (if (file-exists-p "~/.emacs_mouse") > (load "~/.emacs_mouse") > (load "term/default_mouse"))