home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #27 / NN_1992_27.iso / spool / comp / emacs / 3592 < prev    next >
Encoding:
Internet Message Format  |  1992-11-20  |  2.2 KB

  1. Xref: sparky comp.emacs:3592 gnu.emacs.help:4892
  2. Path: sparky!uunet!zaphod.mps.ohio-state.edu!cs.utexas.edu!sun-barr!news2me.EBay.Sun.COM!cronkite.Central.Sun.COM!texsun!digi!kgallagh
  3. From: kgallagh@digi.lonestar.org (Kevin Gallagher)
  4. Newsgroups: comp.emacs,gnu.emacs.help
  5. Subject: Re: Accessing lisp code in ~/emacs/lisp
  6. Message-ID: <1992Nov21.064851.2617@digi.lonestar.org>
  7. Date: 21 Nov 92 06:48:51 GMT
  8. References: <1992Nov20.163317.7594@vpbuild.vp.com> <ESH.92Nov20113951@nitrogen.tss.com>
  9. Organization: DSC Communications Corp, Plano, TX
  10. Lines: 33
  11.  
  12. In article <ESH.92Nov20113951@nitrogen.tss.com> esh@nitrogen.tss.com (Edward S. Hirgelt) writes:
  13. >
  14. >On 20 Nov 92 16:33:17 GMT,
  15. >jessea@vpmeu015.me.vp.com (Jesse W. Asher) said:
  16. >
  17. >Jesse> I would like our programmers to be able to modify the lisp files in
  18. >Jesse> ~/emacs/lisp and have emacs use those file.  Unfortunately, our emacs
  19. >Jesse> (GNU) isn't even looking at those files when they are modified.  
  20.  
  21. If your load path is NOT the problem, then the following may explain what is
  22. happening to you.  Certain emacs lisp files, which contain frequently used
  23. functions, are pre-loaded into the emacs program image at install time.  This
  24. is configurable when emacs is built.  Thus, when you start up a buffer in C
  25. mode, for example, nothing is loaded from the emacs/lisp directory since it is
  26. already in memory.  C mode support is almost always pre-loaded.  To override
  27. previously loaded lisp functions with newer versions automatically, you must
  28. force them to be re-loaded by explicit use of the load function in your .emacs
  29. file.
  30.  
  31. >A further note, don't try to put ~/anything in the list. Use
  32. >expand-file-name to get ~ expanded. If you want to have environment
  33. >variables expanded also use substitute-in-file-name. You can use both if
  34. >necessary. See info for details.
  35.  
  36. This is necessary on some systems, but by no means on all.  Use of
  37. expand-file-name will always work, but it is unnecessary on my system.  It
  38. expands ~ just fine.
  39.  
  40. -- 
  41. ----------------------------------------------------------------------------
  42. Kevin Gallagher        kgallagh@digi.lonestar.org OR ...!uunet!digi!kgallagh
  43. DSC Communications Corporation   Addr: MS 152, 1000 Coit Rd, Plano, TX 75075
  44. ----------------------------------------------------------------------------
  45.