comparison lispintro/emacs-lisp-intro.texi @ 53067:92487270aa3e

On behalf of Kevin Ryde <user42@zip.com.au>: Corrections to cross references, (Interactive Options): elisp "interactive" -> "Using Interactive". (defvar and asterisk): Remove emacs "Edit Options" reference, edit-options is no longer described in the emacs manual. (Lists diagrammed): elisp "List Type" -> "Cons Cell Type".
author Robert J. Chassell <bob@rattlesnake.com>
date Sun, 16 Nov 2003 13:43:25 +0000
parents 695cf19ef79e
children dcef1d5a5ddb
comparison
equal deleted inserted replaced
53066:52b1635cd53f 53067:92487270aa3e
19 @c clear print-postscript-figures 19 @c clear print-postscript-figures
20 @c --------- 20 @c ---------
21 21
22 @comment %**end of header 22 @comment %**end of header
23 23
24 @set edition-number 2.10 24 @set edition-number 2.11
25 @set update-date 2003 July 15 25 @set update-date 2003 Nov 16
26 26
27 @ignore 27 @ignore
28 ## Summary of shell commands to create various output formats: 28 ## Summary of shell commands to create various output formats:
29 29
30 ## Info output 30 ## Info output
3517 @code{(interactive)}. The @code{mark-whole-buffer} function is like 3517 @code{(interactive)}. The @code{mark-whole-buffer} function is like
3518 this. 3518 this.
3519 3519
3520 Alternatively, if the special letter-codes are not right for your 3520 Alternatively, if the special letter-codes are not right for your
3521 application, you can pass your own arguments to @code{interactive} as 3521 application, you can pass your own arguments to @code{interactive} as
3522 a list. @xref{interactive, , Using @code{Interactive}, elisp, The 3522 a list. @xref{Using Interactive, , Using @code{Interactive}, elisp, The
3523 GNU Emacs Lisp Reference Manual}, for more information about this advanced 3523 GNU Emacs Lisp Reference Manual}, for more information about this advanced
3524 technique. 3524 technique.
3525 3525
3526 @node Permanent Installation, let, Interactive Options, Writing Defuns 3526 @node Permanent Installation, let, Interactive Options, Writing Defuns
3527 @comment node-name, next, previous, up 3527 @comment node-name, next, previous, up
8095 either by setting it manually or by using @code{customize}. 8095 either by setting it manually or by using @code{customize}.
8096 @xref{Emacs Initialization, , Your @file{.emacs} File}. 8096 @xref{Emacs Initialization, , Your @file{.emacs} File}.
8097 8097
8098 For me, the major use of the @code{edit-options} command is to suggest 8098 For me, the major use of the @code{edit-options} command is to suggest
8099 variables that I might want to set in my @file{.emacs} file. I urge 8099 variables that I might want to set in my @file{.emacs} file. I urge
8100 you to look through the list. (@xref{Edit Options, , Editing Variable 8100 you to look through the list.
8101 Values, emacs, The GNU Emacs Manual}.)
8102 8101
8103 @node copy-region-as-kill, cons & search-fwd Review, defvar, Cutting & Storing Text 8102 @node copy-region-as-kill, cons & search-fwd Review, defvar, Cutting & Storing Text
8104 @comment node-name, next, previous, up 8103 @comment node-name, next, previous, up
8105 @section @code{copy-region-as-kill} 8104 @section @code{copy-region-as-kill}
8106 @findex copy-region-as-kill 8105 @findex copy-region-as-kill
9140 to say, the symbol @code{flowers} holds the address of the pair of 9139 to say, the symbol @code{flowers} holds the address of the pair of
9141 address-boxes, the first of which holds the address of @code{violet}, 9140 address-boxes, the first of which holds the address of @code{violet},
9142 and the second of which holds the address of @code{buttercup}. 9141 and the second of which holds the address of @code{buttercup}.
9143 9142
9144 A pair of address-boxes is called a @dfn{cons cell} or @dfn{dotted 9143 A pair of address-boxes is called a @dfn{cons cell} or @dfn{dotted
9145 pair}. @xref{List Type, , List Type , elisp, The GNU Emacs Lisp 9144 pair}. @xref{Cons Cell Type, , Cons Cell and List Types, elisp, The GNU Emacs Lisp
9146 Reference Manual}, and @ref{Dotted Pair Notation, , Dotted Pair 9145 Reference Manual}, and @ref{Dotted Pair Notation, , Dotted Pair
9147 Notation, elisp, The GNU Emacs Lisp Reference Manual}, for more 9146 Notation, elisp, The GNU Emacs Lisp Reference Manual}, for more
9148 information about cons cells and dotted pairs. 9147 information about cons cells and dotted pairs.
9149 9148
9150 @need 1200 9149 @need 1200