annotate lisp/edebug/README @ 142:1856695b1fa9 r20-2b5

Import from CVS: tag r20-2b5
author cvs
date Mon, 13 Aug 2007 09:33:18 +0200
parents 376386a54a3c
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 Files included in this distribution:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 README This file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Makefile Just enough to make the manual and distribution.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 edebug.el The reason for all this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 cust-print.el The custom print package.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 edebug-history A history of older modifications.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 eval-reg.el Elisp version of eval-region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 cl-specs.el Specifications for Common Lisp macros.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 cl-read.el Customizable, CL-like reader from bosch@crpht.lu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 edebug-cl-read.el Edebug reader macros for use with cl-read.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 edebug.tex The manual source.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 edebug.texi The core of the manual for Lisp Reference Manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 edebug-test.el Some tests, not organized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 --------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 Installation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 To install, put the .el files in some directory in your load-path and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 byte-compile them. Put the following forms in your .emacs file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 (define-key emacs-lisp-mode-map "\C-xx" 'edebug-eval-top-level-form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 (autoload 'edebug-eval-top-level-form "edebug")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 If you wish to change the default edebug global command prefix, change this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 (setq edebug-global-prefix "\C-xX")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 Other options, are described in the manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 Also see cl-specs.el, and edebug-cl-read.el if they apply to you.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 In previous versions of edebug, users were directed to set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 `debugger' to `edebug-debug'. This is no longer necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 since Edebug automatically sets it whenever Edebug is active.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ---------------------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 Send me your enhancements, ideas, bugs, or fixes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 There is an edebug mailing list if you want to keep up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 with the latest developments: edebug@cs.uiuc.edu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (requests to: edebug-request@cs.uiuc.edu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 You can use edebug-submit-bug-report to simplify bug reporting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 Daniel LaLiberte 217-398-4114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 University of Illinois, Urbana-Champaign
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Department of Computer Science
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 704 W Green
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 Champaign IL, 61820