home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / may94 / util / edit / jade.lha / Jade / lisp / loadsyms.jl < prev    next >
Lisp/Scheme  |  1994-04-16  |  2KB  |  42 lines

  1. ;;;; loadsyms.jl -- Initialise auto-load functions
  2. ;;;  Copyright (C) 1993, 1994 John Harper <jsh@ukc.ac.uk>
  3.  
  4. ;;; This file is part of Jade.
  5.  
  6. ;;; Jade is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 2, or (at your option)
  9. ;;; any later version.
  10.  
  11. ;;; Jade is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. ;;; GNU General Public License for more details.
  15.  
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with Jade; see the file COPYING.  If not, write to
  18. ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. ;;; ::autoload-start::
  21. (autoload 'debug-entry "debug")
  22. (autoload 'debug-error-entry "debug")
  23. (autoload 'ask-yes-or-no "ask")
  24. (autoload 'ask-y-or-n "ask")
  25. (autoload 'c-mode "c-mode")
  26. (autoload 'lisp-mode "lisp-mode")
  27. (autoload 'compile "compile")
  28. (autoload 'next-error "compile")
  29. (autoload 'grep "compile")
  30. (autoload 'grep-buffer "compile")
  31. (autoload 'help "help")
  32. (autoload 'compile-file "compiler")
  33. (autoload 'compile-directory "compiler")
  34. (autoload 'compile-lisp-lib "compiler")
  35. (autoload 'compile-top-level-form "compiler")
  36. (autoload 'disassemble-fun "disassembler")
  37. (autoload 'disassemble "disassembler")
  38. (autoload 'add-change-log-entry "add-log")
  39. (autoload 'texinfo-mode "texinfo-mode")
  40. (autoload 'info "info")
  41. ;;; ::autoload-end::
  42.