0
|
1 ;;; -*- Mode: Emacs-Lisp -*-
|
|
2
|
|
3 ;;; ilisp-aut.el --
|
|
4
|
|
5 ;;; This file is part of ILISP.
|
|
6 ;;; Version: 5.7
|
|
7 ;;;
|
|
8 ;;; Copyright (C) 1990, 1991, 1992, 1993 Chris McConnell
|
|
9 ;;; 1993, 1994 Ivan Vasquez
|
|
10 ;;; 1994, 1995 Marco Antoniotti and Rick Busdiecker
|
|
11 ;;;
|
|
12 ;;; Other authors' names for which this Copyright notice also holds
|
|
13 ;;; may appear later in this file.
|
|
14 ;;;
|
|
15 ;;; Send mail to 'ilisp-request@lehman.com' to be included in the
|
|
16 ;;; ILISP mailing list. 'ilisp@lehman.com' is the general ILISP
|
|
17 ;;; mailing list were bugs and improvements are discussed.
|
|
18 ;;;
|
|
19 ;;; ILISP is freely redistributable under the terms found in the file
|
|
20 ;;; COPYING.
|
|
21
|
|
22
|
|
23
|
|
24 ;;;
|
|
25 ;;; ILISP autoloads
|
|
26 ;;;
|
|
27 (autoload 'lisp-directory "ilisp-src"
|
|
28 "Select directories to search." t)
|
|
29 (autoload 'next-definition-lisp "ilisp-src"
|
|
30 "Edit the next definition." t)
|
|
31 (autoload 'edit-definitions-lisp "ilisp-src"
|
|
32 "Edit definitions." t)
|
|
33 (autoload 'search-lisp "ilisp-src"
|
|
34 "Search for pattern in source files." t)
|
|
35 (autoload 'replace-lisp "ilisp-src"
|
|
36 "Relace pattern in source files." t)
|
|
37 (autoload 'who-calls-lisp "ilisp-src"
|
|
38 "Show callers of a function." t)
|
|
39 (autoload 'next-caller-lisp "ilisp-src"
|
|
40 "Edit the next caller of a function." t)
|
|
41 (autoload 'edit-callers-lisp "ilisp-src"
|
|
42 "Edit the callers of a function." t)
|
|
43
|
|
44 (autoload 'ilisp-bug "ilisp-bug"
|
|
45 "Send a mail message about a bug." t)
|
|
46
|
|
47 ;;;%%Changed definitions
|
|
48 (autoload 'mark-change-lisp "ilisp-bat"
|
|
49 "Mark the current defun as changed." t)
|
|
50 (autoload 'list-changes-lisp "ilisp-bat"
|
|
51 "List the current LISP changes." t)
|
|
52 (autoload 'clear-changes-lisp "ilisp-bat"
|
|
53 "Clear the list of LISP changes." t)
|
|
54 (autoload 'eval-changes-lisp "ilisp-bat"
|
|
55 "Evaluate the list of LISP changes." t)
|
|
56 (autoload 'compile-changes-lisp "ilisp-bat"
|
|
57 "Compile the list of LISP changes." t)
|
|
58
|