home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / languages / elisp / packages / LaTeXinfo.shar.2 / .emacs next >
Encoding:
Text File  |  1990-07-22  |  638 b   |  26 lines

  1. ;; Modify the following line to be the name of this file, and
  2. ;; ut the in your ~/.emacs (without the semi-colons).
  3. ;; (load-file "/usr2/ai/nesc/.emacs")
  4.  
  5. ;;; LaTeXinfo
  6. (setq latexinfo-formats-directory
  7.       (expand-file-name (getenv "LATEXINFO")))
  8.  
  9. (setq load-path 
  10.       (cons
  11.        latexinfo-formats-directory
  12.        load-path))
  13.  
  14. (autoload 'get-latexinfo-node "get-node.el"
  15.       "Get help on a LaTeXinfo topic" t)
  16.  
  17. (define-key help-map "g" 'get-latexinfo-node)
  18.  
  19. (autoload 'latexinfo-format-buffer "latexinfo"
  20.       "Format a buffer for LaTeXinfo" t)
  21.  
  22. (autoload 'nodify-file "nodify"
  23.       "Create nodes structure for a LaTeXinfo file." t)
  24.  
  25.  
  26.