annotate lisp/ilisp/ilisp-aut.el @ 49:b46643e427ac

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