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 5 of 8: startup.el Message-ID: <8722@venera.isi.edu> Date: 22 Jun 89 20:16:39 GMT Reply-To: raveling@venera.isi.edu (Paul Raveling) Distribution: gnu Organization: USC-Information Sciences Institute Lines: 35 HP/ISI input remapping files: Part 5 of 8 These are differences relative to the original lisp/startup.el in GNU emacs version 18.54. The only change is to load lisp/default.el or lisp/default.elc before, rather than after, loading ~/.emacs. In the HP build tree, lisp/default.elc is defined as a symbolic link to "./term/bobcat.elc" for terminal-specific setup. BTW, either the emacs documentation or the original startup.el may have a discrepancy. My recollection is that the documents & comments say it loads "default" only if .emacs doesn't exist. In fact it always checked first for .emacs, then checked for default, but would always load whatever files existed among this pair. ------------------------------ Cut Here -------------------------------- 111c111,117 < ;; Load user's init file, or load default one. --- > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; > ;; ISI version: Always load "default" BEFORE .emacs, > ;; provided "default" exists. > > (load "default" t t) > > ;; Load user's init file, if one exists, AFTER loading default 124c130,131 < (load "default" t t))))) --- > )))) > ; Was: (load "default" t t)))))