home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / languages / elisp / epoch / tek-epoch-stuff / tek-man-setup.el < prev    next >
Encoding:
Text File  |  1991-10-22  |  1.5 KB  |  46 lines

  1. ;*****************************************************************************
  2. ;
  3. ; Filename:    tek-man-setup.el
  4. ;
  5. ; Copyright (C) 1991  Ken Wood
  6. ;
  7. ; This program is free software; you can redistribute it and/or modify
  8. ; it under the terms of the GNU General Public License as published by
  9. ; the Free Software Foundation; either version 1, or (at your option)
  10. ; any later version.
  11. ;
  12. ; This program is distributed in the hope that it will be useful,
  13. ; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. ; GNU General Public License for more details.
  16. ;
  17. ; You should have received a copy of the GNU General Public License
  18. ; along with this program; if not, write to the Free Software
  19. ; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. ;
  21. ; Author:        Ken Wood, <kwood@austek.oz.au>
  22. ; Organisation:        Austek Microsystems Pty Ltd, Australia.
  23. ; Released with permission from Austek Microsystems.
  24. ;
  25. ; Description:    Set up to use enhanced manual browser.
  26. ;
  27. ;        See the INSTALL file that comes with this package for
  28. ;        installation details.
  29. ;
  30. ;*****************************************************************************
  31.  
  32. ; $Id: tek-man-setup.el,v 1.5 1991/10/23 02:16:57 kwood Exp $
  33.  
  34. (require 'epoch-running)
  35. (provide 'tek-man-setup)
  36.  
  37. (if (fboundp 'manual-entry)
  38.     (fmakunbound 'manual-entry))
  39.  
  40. (if (fboundp 'man)
  41.     (fmakunbound 'man))
  42.  
  43. ; Load emacs-based manual
  44. (autoload 'manual-entry "tek-man" "Improved manual browsing" t)
  45. (autoload 'man "tek-man" "Improved manual browsing" t)
  46.