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 >
Wrap
Lisp/Scheme
|
1994-04-16
|
2KB
|
42 lines
;;;; loadsyms.jl -- Initialise auto-load functions
;;; Copyright (C) 1993, 1994 John Harper <jsh@ukc.ac.uk>
;;; This file is part of Jade.
;;; Jade is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 2, or (at your option)
;;; any later version.
;;; Jade is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;; You should have received a copy of the GNU General Public License
;;; along with Jade; see the file COPYING. If not, write to
;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;;; ::autoload-start::
(autoload 'debug-entry "debug")
(autoload 'debug-error-entry "debug")
(autoload 'ask-yes-or-no "ask")
(autoload 'ask-y-or-n "ask")
(autoload 'c-mode "c-mode")
(autoload 'lisp-mode "lisp-mode")
(autoload 'compile "compile")
(autoload 'next-error "compile")
(autoload 'grep "compile")
(autoload 'grep-buffer "compile")
(autoload 'help "help")
(autoload 'compile-file "compiler")
(autoload 'compile-directory "compiler")
(autoload 'compile-lisp-lib "compiler")
(autoload 'compile-top-level-form "compiler")
(autoload 'disassemble-fun "disassembler")
(autoload 'disassemble "disassembler")
(autoload 'add-change-log-entry "add-log")
(autoload 'texinfo-mode "texinfo-mode")
(autoload 'info "info")
;;; ::autoload-end::