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

  1.  
  2.     HP/ISI input remapping files:  Part 5 of 8
  3.  
  4.     These are differences relative to the original lisp/startup.el
  5.     in GNU emacs version 18.54.
  6.  
  7.     The only change is to load lisp/default.el or lisp/default.elc
  8.     before, rather than after, loading ~/.emacs.  In the HP build
  9.     tree, lisp/default.elc is defined as a symbolic link to
  10.     "./term/bobcat.elc" for terminal-specific setup.
  11.  
  12.     BTW, either the emacs documentation or the original startup.el
  13.     may have a discrepancy.  My recollection is that the documents
  14.     & comments say it loads "default" only if .emacs doesn't exist.
  15.     In fact it always checked first for .emacs, then checked for
  16.     default, but would always load whatever files existed among
  17.     this pair.
  18.  
  19.  
  20. ------------------------------  Cut  Here  --------------------------------
  21. 111c111,117
  22. <     ;; Load user's init file, or load default one.
  23. ---
  24. > ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  25. >     ;;        ISI version:  Always load "default" BEFORE .emacs,
  26. >     ;;        provided "default" exists.
  27. >     (load "default" t t)
  28. >     ;; Load user's init file, if one exists, AFTER loading default
  29. 124c130,131
  30. <              (load "default" t t)))))
  31. ---
  32. >              ))))
  33. > ;    Was:         (load "default" t t)))))
  34.  
  35.  
  36.