annotate man/lispref/text.texi @ 414:da8ed4261e83 r21-2-15

Import from CVS: tag r21-2-15
author cvs
date Mon, 13 Aug 2007 11:21:38 +0200
parents 697ef44129c6
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 @c -*-texinfo-*-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 @c This is part of the XEmacs Lisp Reference Manual.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 @c See the file lispref.texi for copying conditions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 @setfilename ../../info/text.info
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 @node Text, Searching and Matching, Markers, Top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 @chapter Text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 @cindex text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 This chapter describes the functions that deal with the text in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 buffer. Most examine, insert, or delete text in the current buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 often in the vicinity of point. Many are interactive. All the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 functions that change the text provide for undoing the changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 (@pxref{Undo}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 Many text-related functions operate on a region of text defined by two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 buffer positions passed in arguments named @var{start} and @var{end}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 These arguments should be either markers (@pxref{Markers}) or numeric
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 character positions (@pxref{Positions}). The order of these arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 does not matter; it is all right for @var{start} to be the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 region and @var{end} the beginning. For example, @code{(delete-region 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 10)} and @code{(delete-region 10 1)} are equivalent. An
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 @code{args-out-of-range} error is signaled if either @var{start} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 @var{end} is outside the accessible portion of the buffer. In an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 interactive call, point and the mark are used for these arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 @cindex buffer contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 Throughout this chapter, ``text'' refers to the characters in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 buffer, together with their properties (when relevant).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 * Near Point:: Examining text in the vicinity of point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 * Buffer Contents:: Examining text in a general fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 * Comparing Text:: Comparing substrings of buffers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 * Insertion:: Adding new text to a buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 * Commands for Insertion:: User-level commands to insert text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 * Deletion:: Removing text from a buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 * User-Level Deletion:: User-level commands to delete text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 * The Kill Ring:: Where removed text sometimes is saved for later use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 * Undo:: Undoing changes to the text of a buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 * Maintaining Undo:: How to enable and disable undo information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 How to control how much information is kept.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 * Filling:: Functions for explicit filling.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 * Margins:: How to specify margins for filling commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 * Auto Filling:: How auto-fill mode is implemented to break lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 * Sorting:: Functions for sorting parts of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 * Columns:: Computing horizontal positions, and using them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 * Indentation:: Functions to insert or adjust indentation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 * Case Changes:: Case conversion of parts of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 * Text Properties:: Assigning Lisp property lists to text characters.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 * Substitution:: Replacing a given character wherever it appears.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 * Registers:: How registers are implemented. Accessing the text or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 position stored in a register.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 * Transposition:: Swapping two portions of a buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 * Change Hooks:: Supplying functions to be run when text is changed.
377
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
56 * Transformations:: MD5 and base64 support.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 @node Near Point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 @section Examining Text Near Point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Many functions are provided to look at the characters around point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 Several simple functions are described here. See also @code{looking-at}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 in @ref{Regexp Search}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 Many of these functions take an optional @var{buffer} argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 In all such cases, the current buffer will be used if this argument
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 is omitted. (In FSF Emacs, and earlier versions of XEmacs, these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 functions usually did not have these optional @var{buffer} arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 and always operated on the current buffer.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
73 @defun char-after position &optional buffer
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 This function returns the character in the buffer at (i.e.,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 immediately after) position @var{position}. If @var{position} is out of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 range for this purpose, either before the beginning of the buffer, or at
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
77 or beyond the end, then the value is @code{nil}. If optional argument
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
78 @var{buffer} is @code{nil}, the current buffer is assumed.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 In the following example, assume that the first character in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 buffer is @samp{@@}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (char-to-string (char-after 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 @result{} "@@"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 @defun following-char &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 This function returns the character following point in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 This is similar to @code{(char-after (point))}. However, if point is at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 the end of the buffer, then the result of @code{following-char} is 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 If optional argument @var{buffer} is @code{nil}, the current buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 Remember that point is always between characters, and the terminal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 cursor normally appears over the character following point. Therefore,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 the character returned by @code{following-char} is the character the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 cursor is over.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 In this example, point is between the @samp{a} and the @samp{c}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Gentlemen may cry ``Pea@point{}ce! Peace!,''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 but there is no peace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (char-to-string (preceding-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 @result{} "a"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (char-to-string (following-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 @result{} "c"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 @defun preceding-char &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 This function returns the character preceding point in the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 See above, under @code{following-char}, for an example. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 point is at the beginning of the buffer, @code{preceding-char} returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 0. If optional argument @var{buffer} is @code{nil}, the current buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 @defun bobp &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 This function returns @code{t} if point is at the beginning of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 buffer. If narrowing is in effect, this means the beginning of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 accessible portion of the text. If optional argument @var{buffer} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 @code{nil}, the current buffer is assumed. See also @code{point-min} in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 @ref{Point}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 @defun eobp &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 This function returns @code{t} if point is at the end of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 If narrowing is in effect, this means the end of accessible portion of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 the text. If optional argument @var{buffer} is @code{nil}, the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 buffer is assumed. See also @code{point-max} in @xref{Point}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 @defun bolp &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 This function returns @code{t} if point is at the beginning of a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 If optional argument @var{buffer} is @code{nil}, the current buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 assumed. @xref{Text Lines}. The beginning of the buffer (or its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 accessible portion) always counts as the beginning of a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 @defun eolp &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 This function returns @code{t} if point is at the end of a line. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 end of the buffer is always considered the end of a line. If optional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 argument @var{buffer} is @code{nil}, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 The end of the buffer (or of its accessible portion) is always considered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 the end of a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 @node Buffer Contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 @section Examining Buffer Contents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 This section describes two functions that allow a Lisp program to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 convert any portion of the text in the buffer into a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 @defun buffer-substring start end &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 @defunx buffer-string start end &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 These functions are equivalent and return a string containing a copy of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 the text of the region defined by positions @var{start} and @var{end} in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 the buffer. If the arguments are not positions in the accessible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 portion of the buffer, @code{buffer-substring} signals an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 @code{args-out-of-range} error. If optional argument @var{buffer} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 @code{nil}, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 @c XEmacs feature.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 If the region delineated by @var{start} and @var{end} contains
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 duplicable extents, they will be remembered in the string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 @xref{Duplicable Extents}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 It is not necessary for @var{start} to be less than @var{end}; the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 arguments can be given in either order. But most often the smaller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 argument is written first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 This is the contents of buffer foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (buffer-substring 1 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 @result{} "This is t"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (buffer-substring (point-max) 10)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 @result{} "he contents of buffer foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 @ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 @c `equal' in XEmacs does not compare text properties on strings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 @defun buffer-substring-without-properties start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 This is like @code{buffer-substring}, except that it does not copy text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 properties, just the characters themselves. @xref{Text Properties}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 Here's an example of using this function to get a word to look up in an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 alist:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (setq flammable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (assoc (buffer-substring start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 '(("wood" . t) ("paper" . t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 ("steel" . nil) ("asbestos" . nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 If this were written using @code{buffer-substring} instead, it would not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 work reliably; any text properties that happened to be in the word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 copied from the buffer would make the comparisons fail.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 @node Comparing Text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 @section Comparing Text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 @cindex comparing buffer text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 This function lets you compare portions of the text in a buffer, without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 copying them into strings first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 @defun compare-buffer-substrings buffer1 start1 end1 buffer2 start2 end2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 This function lets you compare two substrings of the same buffer or two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 different buffers. The first three arguments specify one substring,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 giving a buffer and two positions within the buffer. The last three
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 arguments specify the other substring in the same way. You can use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 @code{nil} for @var{buffer1}, @var{buffer2}, or both to stand for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 The value is negative if the first substring is less, positive if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 first is greater, and zero if they are equal. The absolute value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 the result is one plus the index of the first differing characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 within the substrings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 This function ignores case when comparing characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 if @code{case-fold-search} is non-@code{nil}. It always ignores
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 text properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 Suppose the current buffer contains the text @samp{foobarbar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 haha!rara!}; then in this example the two substrings are @samp{rbar }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 and @samp{rara!}. The value is 2 because the first substring is greater
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 at the second character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (compare-buffer-substring nil 6 11 nil 16 21)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 @result{} 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 @node Insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 @section Inserting Text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 @cindex insertion of text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 @cindex text insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 @dfn{Insertion} means adding new text to a buffer. The inserted text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 goes at point---between the character before point and the character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 after point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 Insertion relocates markers that point at positions after the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 insertion point, so that they stay with the surrounding text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (@pxref{Markers}). When a marker points at the place of insertion,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 insertion normally doesn't relocate the marker, so that it points to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 beginning of the inserted text; however, certain special functions such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 as @code{insert-before-markers} relocate such markers to point after the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 inserted text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 @cindex insertion before point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 @cindex before point, insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 Some insertion functions leave point before the inserted text, while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 other functions leave it after. We call the former insertion @dfn{after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 point} and the latter insertion @dfn{before point}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 @c XEmacs feature.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 If a string with non-@code{nil} extent data is inserted, the remembered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 extents will also be inserted. @xref{Duplicable Extents}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 Insertion functions signal an error if the current buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 read-only.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 These functions copy text characters from strings and buffers along
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 with their properties. The inserted characters have exactly the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 properties as the characters they were copied from. By contrast,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 characters specified as separate arguments, not part of a string or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 buffer, inherit their text properties from the neighboring text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 @defun insert &rest args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 This function inserts the strings and/or characters @var{args} into the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 current buffer, at point, moving point forward. In other words, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 inserts the text before point. An error is signaled unless all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 @var{args} are either strings or characters. The value is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 @defun insert-before-markers &rest args
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 This function inserts the strings and/or characters @var{args} into the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 current buffer, at point, moving point forward. An error is signaled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 unless all @var{args} are either strings or characters. The value is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 This function is unlike the other insertion functions in that it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 relocates markers initially pointing at the insertion point, to point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 after the inserted text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 @defun insert-string string &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 This function inserts @var{string} into @var{buffer} before point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 @var{buffer} defaults to the current buffer if omitted. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 function is chiefly useful if you want to insert a string in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 a buffer other than the current one (otherwise you could just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 use @code{insert}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 @defun insert-char character count &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 This function inserts @var{count} instances of @var{character} into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 @var{buffer} before point. @var{count} must be a number, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 @var{character} must be a character. The value is @code{nil}. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 optional argument @var{buffer} is @code{nil}, the current buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 assumed. (In FSF Emacs, the third argument is called @var{inherit}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 and refers to text properties.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 @defun insert-buffer-substring from-buffer-or-name &optional start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 This function inserts a portion of buffer @var{from-buffer-or-name}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (which must already exist) into the current buffer before point. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 text inserted is the region from @var{start} and @var{end}. (These
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 arguments default to the beginning and end of the accessible portion of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 that buffer.) This function returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 In this example, the form is executed with buffer @samp{bar} as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 current buffer. We assume that buffer @samp{bar} is initially empty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 We hold these truths to be self-evident, that all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (insert-buffer-substring "foo" 1 20)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 ---------- Buffer: bar ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 We hold these truth@point{}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 ---------- Buffer: bar ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 @node Commands for Insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 @section User-Level Insertion Commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 This section describes higher-level commands for inserting text,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 commands intended primarily for the user but useful also in Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 programs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 @deffn Command insert-buffer from-buffer-or-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 This command inserts the entire contents of @var{from-buffer-or-name}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (which must exist) into the current buffer after point. It leaves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 the mark after the inserted text. The value is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 @deffn Command self-insert-command count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 @cindex character insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 @cindex self-insertion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 This command inserts the last character typed; it does so @var{count}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 times, before point, and returns @code{nil}. Most printing characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 are bound to this command. In routine use, @code{self-insert-command}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 is the most frequently called function in XEmacs, but programs rarely use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 it except to install it on a keymap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 In an interactive call, @var{count} is the numeric prefix argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 This command calls @code{auto-fill-function} whenever that is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 non-@code{nil} and the character inserted is a space or a newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (@pxref{Auto Filling}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 @c Cross refs reworded to prevent overfull hbox. --rjc 15mar92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 This command performs abbrev expansion if Abbrev mode is enabled and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 the inserted character does not have word-constituent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 syntax. (@xref{Abbrevs}, and @ref{Syntax Class Table}.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 This is also responsible for calling @code{blink-paren-function} when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 the inserted character has close parenthesis syntax (@pxref{Blinking}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 @deffn Command newline &optional number-of-newlines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 This command inserts newlines into the current buffer before point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 If @var{number-of-newlines} is supplied, that many newline characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 are inserted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 @cindex newline and Auto Fill mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 This function calls @code{auto-fill-function} if the current column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 number is greater than the value of @code{fill-column} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 @var{number-of-newlines} is @code{nil}. Typically what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 @code{auto-fill-function} does is insert a newline; thus, the overall
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 result in this case is to insert two newlines at different places: one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 at point, and another earlier in the line. @code{newline} does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 auto-fill if @var{number-of-newlines} is non-@code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 This command indents to the left margin if that is not zero.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 @xref{Margins}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 The value returned is @code{nil}. In an interactive call, @var{count}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 is the numeric prefix argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 @deffn Command split-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 This command splits the current line, moving the portion of the line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 after point down vertically so that it is on the next line directly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 below where it was before. Whitespace is inserted as needed at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 beginning of the lower line, using the @code{indent-to} function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 @code{split-line} returns the position of point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 Programs hardly ever use this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 @defvar overwrite-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 This variable controls whether overwrite mode is in effect: a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 non-@code{nil} value enables the mode. It is automatically made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 buffer-local when set in any fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 @node Deletion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 @section Deleting Text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 @cindex deletion vs killing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 Deletion means removing part of the text in a buffer, without saving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 it in the kill ring (@pxref{The Kill Ring}). Deleted text can't be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 yanked, but can be reinserted using the undo mechanism (@pxref{Undo}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 Some deletion functions do save text in the kill ring in some special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 cases.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 All of the deletion functions operate on the current buffer, and all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 return a value of @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 @defun erase-buffer &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 This function deletes the entire text of @var{buffer}, leaving it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 empty. If the buffer is read-only, it signals a @code{buffer-read-only}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 error. Otherwise, it deletes the text without asking for any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 confirmation. It returns @code{nil}. @var{buffer} defaults to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 current buffer if omitted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 Normally, deleting a large amount of text from a buffer inhibits further
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 auto-saving of that buffer ``because it has shrunk''. However,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 @code{erase-buffer} does not do this, the idea being that the future
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 text is not really related to the former text, and its size should not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 be compared with that of the former text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 @deffn Command delete-region start end &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 This command deletes the text in @var{buffer} in the region defined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 @var{start} and @var{end}. The value is @code{nil}. If optional
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 argument @var{buffer} is @code{nil}, the current buffer is assumed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 @deffn Command delete-char count &optional killp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 This command deletes @var{count} characters directly after point, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 before point if @var{count} is negative. If @var{killp} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 non-@code{nil}, then it saves the deleted characters in the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 In an interactive call, @var{count} is the numeric prefix argument, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 @var{killp} is the unprocessed prefix argument. Therefore, if a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 argument is supplied, the text is saved in the kill ring. If no prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 argument is supplied, then one character is deleted, but not saved in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 The value returned is always @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 @deffn Command delete-backward-char count &optional killp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 @cindex delete previous char
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 This command deletes @var{count} characters directly before point, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 after point if @var{count} is negative. If @var{killp} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 non-@code{nil}, then it saves the deleted characters in the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 In an interactive call, @var{count} is the numeric prefix argument, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 @var{killp} is the unprocessed prefix argument. Therefore, if a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 argument is supplied, the text is saved in the kill ring. If no prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 argument is supplied, then one character is deleted, but not saved in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 The value returned is always @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 @deffn Command backward-delete-char-untabify count &optional killp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 @cindex tab deletion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 This command deletes @var{count} characters backward, changing tabs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 into spaces. When the next character to be deleted is a tab, it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 first replaced with the proper number of spaces to preserve alignment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 and then one of those spaces is deleted instead of the tab. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 @var{killp} is non-@code{nil}, then the command saves the deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 characters in the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 Conversion of tabs to spaces happens only if @var{count} is positive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 If it is negative, exactly @minus{}@var{count} characters after point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 are deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 In an interactive call, @var{count} is the numeric prefix argument, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 @var{killp} is the unprocessed prefix argument. Therefore, if a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 argument is supplied, the text is saved in the kill ring. If no prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 argument is supplied, then one character is deleted, but not saved in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 The value returned is always @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 @node User-Level Deletion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 @section User-Level Deletion Commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 This section describes higher-level commands for deleting text,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 commands intended primarily for the user but useful also in Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 programs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 @deffn Command delete-horizontal-space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 @cindex deleting whitespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 This function deletes all spaces and tabs around point. It returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 In the following examples, we call @code{delete-horizontal-space} four
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 times, once on each line, with point between the second and third
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 characters on the line each time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 I @point{}thought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 I @point{} thought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 We@point{} thought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 Yo@point{}u thought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (delete-horizontal-space) ; @r{Four times.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 Ithought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 Ithought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 Wethought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 You thought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 @deffn Command delete-indentation &optional join-following-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 This function joins the line point is on to the previous line, deleting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 any whitespace at the join and in some cases replacing it with one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 space. If @var{join-following-p} is non-@code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 @code{delete-indentation} joins this line to the following line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 instead. The value is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 If there is a fill prefix, and the second of the lines being joined
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 starts with the prefix, then @code{delete-indentation} deletes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 fill prefix before joining the lines. @xref{Margins}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 In the example below, point is located on the line starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 @samp{events}, and it makes no difference if there are trailing spaces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 in the preceding line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 When in the course of human
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 @point{} events, it becomes necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (delete-indentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 When in the course of human@point{} events, it becomes necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 After the lines are joined, the function @code{fixup-whitespace} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 responsible for deciding whether to leave a space at the junction.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 @defun fixup-whitespace
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 This function replaces all the white space surrounding point with either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 one space or no space, according to the context. It returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 At the beginning or end of a line, the appropriate amount of space is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 none. Before a character with close parenthesis syntax, or after a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 character with open parenthesis or expression-prefix syntax, no space is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 also appropriate. Otherwise, one space is appropriate. @xref{Syntax
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 Class Table}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 In the example below, @code{fixup-whitespace} is called the first time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 with point before the word @samp{spaces} in the first line. For the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 second invocation, point is directly after the @samp{(}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 This has too many @point{}spaces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 This has too many spaces at the start of (@point{} this list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (fixup-whitespace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (fixup-whitespace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 This has too many spaces
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 This has too many spaces at the start of (this list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 @deffn Command just-one-space
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 @comment !!SourceFile simple.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 This command replaces any spaces and tabs around point with a single
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 space. It returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 @deffn Command delete-blank-lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 This function deletes blank lines surrounding point. If point is on a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 blank line with one or more blank lines before or after it, then all but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 one of them are deleted. If point is on an isolated blank line, then it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 is deleted. If point is on a nonblank line, the command deletes all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 blank lines following it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 A blank line is defined as a line containing only tabs and spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 @code{delete-blank-lines} returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 @node The Kill Ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 @section The Kill Ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 @cindex kill ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 @dfn{Kill} functions delete text like the deletion functions, but save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 it so that the user can reinsert it by @dfn{yanking}. Most of these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 functions have @samp{kill-} in their name. By contrast, the functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 whose names start with @samp{delete-} normally do not save text for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 yanking (though they can still be undone); these are ``deletion''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 Most of the kill commands are primarily for interactive use, and are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 not described here. What we do describe are the functions provided for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 use in writing such commands. You can use these functions to write
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 commands for killing text. When you need to delete text for internal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 purposes within a Lisp function, you should normally use deletion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 functions, so as not to disturb the kill ring contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 @xref{Deletion}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 Killed text is saved for later yanking in the @dfn{kill ring}. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 is a list that holds a number of recent kills, not just the last text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 kill. We call this a ``ring'' because yanking treats it as having
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 elements in a cyclic order. The list is kept in the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 @code{kill-ring}, and can be operated on with the usual functions for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 lists; there are also specialized functions, described in this section,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 that treat it as a ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 Some people think this use of the word ``kill'' is unfortunate, since
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 it refers to operations that specifically @emph{do not} destroy the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 entities ``killed''. This is in sharp contrast to ordinary life, in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 which death is permanent and ``killed'' entities do not come back to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 life. Therefore, other metaphors have been proposed. For example, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 term ``cut ring'' makes sense to people who, in pre-computer days, used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 scissors and paste to cut up and rearrange manuscripts. However, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 would be difficult to change the terminology now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 * Kill Ring Concepts:: What text looks like in the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 * Kill Functions:: Functions that kill text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 * Yank Commands:: Commands that access the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 * Low-Level Kill Ring:: Functions and variables for kill ring access.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 * Internals of Kill Ring:: Variables that hold kill-ring data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 @node Kill Ring Concepts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 @subsection Kill Ring Concepts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 The kill ring records killed text as strings in a list, most recent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 first. A short kill ring, for example, might look like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 ("some text" "a different piece of text" "even older text")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 When the list reaches @code{kill-ring-max} entries in length, adding a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 new entry automatically deletes the last entry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 When kill commands are interwoven with other commands, each kill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 command makes a new entry in the kill ring. Multiple kill commands in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 succession build up a single entry in the kill ring, which would be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 yanked as a unit; the second and subsequent consecutive kill commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 add text to the entry made by the first one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 For yanking, one entry in the kill ring is designated the ``front'' of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 the ring. Some yank commands ``rotate'' the ring by designating a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 different element as the ``front.'' But this virtual rotation doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 change the list itself---the most recent entry always comes first in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 @node Kill Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 @subsection Functions for Killing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 @code{kill-region} is the usual subroutine for killing text. Any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 command that calls this function is a ``kill command'' (and should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 probably have @samp{kill} in its name). @code{kill-region} puts the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 newly killed text in a new element at the beginning of the kill ring or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 adds it to the most recent element. It uses the @code{last-command}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 variable to determine whether the previous command was a kill command,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 and if so appends the killed text to the most recent entry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 @deffn Command kill-region start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 This function kills the text in the region defined by @var{start} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 @var{end}. The text is deleted but saved in the kill ring, along with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 its text properties. The value is always @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 In an interactive call, @var{start} and @var{end} are point and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 the mark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 @c Emacs 19 feature
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 If the buffer is read-only, @code{kill-region} modifies the kill ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 just the same, then signals an error without modifying the buffer. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 is convenient because it lets the user use all the kill commands to copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 text into the kill ring from a read-only buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 @deffn Command copy-region-as-kill start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 This command saves the region defined by @var{start} and @var{end} on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 the kill ring (including text properties), but does not delete the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 from the buffer. It returns @code{nil}. It also indicates the extent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 of the text copied by moving the cursor momentarily, or by displaying a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 message in the echo area.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 The command does not set @code{this-command} to @code{kill-region}, so a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 subsequent kill command does not append to the same kill ring entry.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 Don't call @code{copy-region-as-kill} in Lisp programs unless you aim to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 support Emacs 18. For Emacs 19, it is better to use @code{kill-new} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 @code{kill-append} instead. @xref{Low-Level Kill Ring}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 @node Yank Commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 @subsection Functions for Yanking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 @dfn{Yanking} means reinserting an entry of previously killed text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 from the kill ring. The text properties are copied too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 @deffn Command yank &optional arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 @cindex inserting killed text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 This command inserts before point the text in the first entry in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 kill ring. It positions the mark at the beginning of that text, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 point at the end.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 If @var{arg} is a list (which occurs interactively when the user
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 types @kbd{C-u} with no digits), then @code{yank} inserts the text as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 described above, but puts point before the yanked text and puts the mark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 after it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 If @var{arg} is a number, then @code{yank} inserts the @var{arg}th most
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 recently killed text---the @var{arg}th element of the kill ring list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 @code{yank} does not alter the contents of the kill ring or rotate it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 It returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 @deffn Command yank-pop arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 This command replaces the just-yanked entry from the kill ring with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 different entry from the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 This is allowed only immediately after a @code{yank} or another
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 @code{yank-pop}. At such a time, the region contains text that was just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 inserted by yanking. @code{yank-pop} deletes that text and inserts in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 its place a different piece of killed text. It does not add the deleted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 text to the kill ring, since it is already in the kill ring somewhere.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 If @var{arg} is @code{nil}, then the replacement text is the previous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 element of the kill ring. If @var{arg} is numeric, the replacement is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 the @var{arg}th previous kill. If @var{arg} is negative, a more recent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 kill is the replacement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 The sequence of kills in the kill ring wraps around, so that after the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 oldest one comes the newest one, and before the newest one goes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 oldest.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 The value is always @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 @node Low-Level Kill Ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 @subsection Low-Level Kill Ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 These functions and variables provide access to the kill ring at a lower
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 level, but still convenient for use in Lisp programs. They take care of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 interaction with X Window selections. They do not exist in Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 version 18.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 @defun current-kill n &optional do-not-move
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 The function @code{current-kill} rotates the yanking pointer which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 designates the ``front'' of the kill ring by @var{n} places (from newer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 kills to older ones), and returns the text at that place in the ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 If the optional second argument @var{do-not-move} is non-@code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 then @code{current-kill} doesn't alter the yanking pointer; it just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 returns the @var{n}th kill, counting from the current yanking pointer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 If @var{n} is zero, indicating a request for the latest kill,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 @code{current-kill} calls the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 @code{interprogram-paste-function} (documented below) before consulting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 the kill ring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 @defun kill-new string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 This function puts the text @var{string} into the kill ring as a new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 entry at the front of the ring. It discards the oldest entry if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 appropriate. It also invokes the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 @code{interprogram-cut-function} (see below).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 @defun kill-append string before-p
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 This function appends the text @var{string} to the first entry in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 kill ring. Normally @var{string} goes at the end of the entry, but if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 @var{before-p} is non-@code{nil}, it goes at the beginning. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 function also invokes the value of @code{interprogram-cut-function} (see
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 below).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 @defvar interprogram-paste-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 This variable provides a way of transferring killed text from other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 programs, when you are using a window system. Its value should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 @code{nil} or a function of no arguments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 If the value is a function, @code{current-kill} calls it to get the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 ``most recent kill''. If the function returns a non-@code{nil} value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 then that value is used as the ``most recent kill''. If it returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 @code{nil}, then the first element of @code{kill-ring} is used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 The normal use of this hook is to get the X server's primary selection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 as the most recent kill, even if the selection belongs to another X
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 client. @xref{X Selections}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 @defvar interprogram-cut-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 This variable provides a way of communicating killed text to other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 programs, when you are using a window system. Its value should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 @code{nil} or a function of one argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 If the value is a function, @code{kill-new} and @code{kill-append} call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 it with the new first element of the kill ring as an argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 The normal use of this hook is to set the X server's primary selection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 to the newly killed text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 @node Internals of Kill Ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 @subsection Internals of the Kill Ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 The variable @code{kill-ring} holds the kill ring contents, in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 form of a list of strings. The most recent kill is always at the front
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 of the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 The @code{kill-ring-yank-pointer} variable points to a link in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 kill ring list, whose @sc{car} is the text to yank next. We say it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 identifies the ``front'' of the ring. Moving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 @code{kill-ring-yank-pointer} to a different link is called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 @dfn{rotating the kill ring}. We call the kill ring a ``ring'' because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 the functions that move the yank pointer wrap around from the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 list to the beginning, or vice-versa. Rotation of the kill ring is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 virtual; it does not change the value of @code{kill-ring}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 Both @code{kill-ring} and @code{kill-ring-yank-pointer} are Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 variables whose values are normally lists. The word ``pointer'' in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 name of the @code{kill-ring-yank-pointer} indicates that the variable's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 purpose is to identify one element of the list for use by the next yank
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 The value of @code{kill-ring-yank-pointer} is always @code{eq} to one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 of the links in the kill ring list. The element it identifies is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 @sc{car} of that link. Kill commands, which change the kill ring, also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 set this variable to the value of @code{kill-ring}. The effect is to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 rotate the ring so that the newly killed text is at the front.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 Here is a diagram that shows the variable @code{kill-ring-yank-pointer}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 pointing to the second entry in the kill ring @code{("some text" "a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 different piece of text" "yet older text")}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 kill-ring kill-ring-yank-pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 | |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 | ___ ___ ---> ___ ___ ___ ___
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 --> |___|___|------> |___|___|--> |___|___|--> nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 | | |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 | | |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 | | -->"yet older text"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 | |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 | --> "a different piece of text"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 |
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 --> "some text"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 This state of affairs might occur after @kbd{C-y} (@code{yank})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 immediately followed by @kbd{M-y} (@code{yank-pop}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 @defvar kill-ring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 This variable holds the list of killed text sequences, most recently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 killed first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 @defvar kill-ring-yank-pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 This variable's value indicates which element of the kill ring is at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 ``front'' of the ring for yanking. More precisely, the value is a tail
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 of the value of @code{kill-ring}, and its @sc{car} is the kill string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 that @kbd{C-y} should yank.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 @defopt kill-ring-max
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 The value of this variable is the maximum length to which the kill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 ring can grow, before elements are thrown away at the end. The default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 value for @code{kill-ring-max} is 30.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 @node Undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 @section Undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 @cindex redo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 Most buffers have an @dfn{undo list}, which records all changes made
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 to the buffer's text so that they can be undone. (The buffers that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 don't have one are usually special-purpose buffers for which XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 assumes that undoing is not useful.) All the primitives that modify the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 text in the buffer automatically add elements to the front of the undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 list, which is in the variable @code{buffer-undo-list}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 @defvar buffer-undo-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 This variable's value is the undo list of the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 A value of @code{t} disables the recording of undo information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 Here are the kinds of elements an undo list can have:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 @table @code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 @item @var{integer}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 This kind of element records a previous value of point. Ordinary cursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 motion does not get any sort of undo record, but deletion commands use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 these entries to record where point was before the command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 @item (@var{beg} . @var{end})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 This kind of element indicates how to delete text that was inserted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 Upon insertion, the text occupied the range @var{beg}--@var{end} in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 @item (@var{text} . @var{position})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 This kind of element indicates how to reinsert text that was deleted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 The deleted text itself is the string @var{text}. The place to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 reinsert it is @code{(abs @var{position})}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 @item (t @var{high} . @var{low})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 This kind of element indicates that an unmodified buffer became
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 modified. The elements @var{high} and @var{low} are two integers, each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 recording 16 bits of the visited file's modification time as of when it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 was previously visited or saved. @code{primitive-undo} uses those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 values to determine whether to mark the buffer as unmodified once again;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 it does so only if the file's modification time matches those numbers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 @item (nil @var{property} @var{value} @var{beg} . @var{end})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 This kind of element records a change in a text property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 Here's how you might undo the change:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 (put-text-property @var{beg} @var{end} @var{property} @var{value})
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 @item @var{position}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 This element indicates where point was at an earlier time. Undoing this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 element sets point to @var{position}. Deletion normally creates an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 element of this kind as well as a reinsertion element.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 @item nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 This element is a boundary. The elements between two boundaries are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 called a @dfn{change group}; normally, each change group corresponds to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 one keyboard command, and undo commands normally undo an entire group as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 a unit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 @defun undo-boundary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 This function places a boundary element in the undo list. The undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 command stops at such a boundary, and successive undo commands undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 to earlier and earlier boundaries. This function returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 The editor command loop automatically creates an undo boundary before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 each key sequence is executed. Thus, each undo normally undoes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 effects of one command. Self-inserting input characters are an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 exception. The command loop makes a boundary for the first such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 character; the next 19 consecutive self-inserting input characters do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 not make boundaries, and then the 20th does, and so on as long as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 self-inserting characters continue.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 All buffer modifications add a boundary whenever the previous undoable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 change was made in some other buffer. This way, a command that modifies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 several buffers makes a boundary in each buffer it changes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 Calling this function explicitly is useful for splitting the effects of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 a command into more than one unit. For example, @code{query-replace}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 calls @code{undo-boundary} after each replacement, so that the user can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 undo individual replacements one by one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 @defun primitive-undo count list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 This is the basic function for undoing elements of an undo list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 It undoes the first @var{count} elements of @var{list}, returning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 the rest of @var{list}. You could write this function in Lisp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 but it is convenient to have it in C.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 @code{primitive-undo} adds elements to the buffer's undo list when it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 changes the buffer. Undo commands avoid confusion by saving the undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 list value at the beginning of a sequence of undo operations. Then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 undo operations use and update the saved value. The new elements added
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 by undoing are not part of this saved value, so they don't interfere with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 continuing to undo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 @node Maintaining Undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 @section Maintaining Undo Lists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 This section describes how to enable and disable undo information for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 a given buffer. It also explains how the undo list is truncated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 automatically so it doesn't get too big.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 Recording of undo information in a newly created buffer is normally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 enabled to start with; but if the buffer name starts with a space, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 undo recording is initially disabled. You can explicitly enable or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 disable undo recording with the following two functions, or by setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 @code{buffer-undo-list} yourself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 @deffn Command buffer-enable-undo &optional buffer-or-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 This command enables recording undo information for buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 @var{buffer-or-name}, so that subsequent changes can be undone. If no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 argument is supplied, then the current buffer is used. This function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 does nothing if undo recording is already enabled in the buffer. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 In an interactive call, @var{buffer-or-name} is the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 You cannot specify any other buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 @defun buffer-disable-undo &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 @defunx buffer-flush-undo &optional buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 @cindex disable undo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 This function discards the undo list of @var{buffer}, and disables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 further recording of undo information. As a result, it is no longer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 possible to undo either previous changes or any subsequent changes. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 the undo list of @var{buffer} is already disabled, this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 has no effect.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 This function returns @code{nil}. It cannot be called interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 The name @code{buffer-flush-undo} is not considered obsolete, but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 preferred name @code{buffer-disable-undo} is new as of Emacs versions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 19.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 As editing continues, undo lists get longer and longer. To prevent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 them from using up all available memory space, garbage collection trims
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 them back to size limits you can set. (For this purpose, the ``size''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 of an undo list measures the cons cells that make up the list, plus the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 strings of deleted text.) Two variables control the range of acceptable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 sizes: @code{undo-limit} and @code{undo-strong-limit}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 @defvar undo-limit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 This is the soft limit for the acceptable size of an undo list. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 change group at which this size is exceeded is the last one kept.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 @defvar undo-strong-limit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 This is the upper limit for the acceptable size of an undo list. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 change group at which this size is exceeded is discarded itself (along
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 with all older change groups). There is one exception: the very latest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 change group is never discarded no matter how big it is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 @node Filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 @section Filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 @cindex filling, explicit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 @dfn{Filling} means adjusting the lengths of lines (by moving the line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 breaks) so that they are nearly (but no greater than) a specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 maximum width. Additionally, lines can be @dfn{justified}, which means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 inserting spaces to make the left and/or right margins line up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 precisely. The width is controlled by the variable @code{fill-column}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 For ease of reading, lines should be no longer than 70 or so columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 You can use Auto Fill mode (@pxref{Auto Filling}) to fill text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 automatically as you insert it, but changes to existing text may leave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 it improperly filled. Then you must fill the text explicitly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 Most of the commands in this section return values that are not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 meaningful. All the functions that do filling take note of the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 left margin, current right margin, and current justification style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (@pxref{Margins}). If the current justification style is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 @code{none}, the filling functions don't actually do anything.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 Several of the filling functions have an argument @var{justify}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 If it is non-@code{nil}, that requests some kind of justification. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 can be @code{left}, @code{right}, @code{full}, or @code{center}, to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 request a specific style of justification. If it is @code{t}, that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 means to use the current justification style for this part of the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (see @code{current-justification}, below).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 When you call the filling functions interactively, using a prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 argument implies the value @code{full} for @var{justify}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 @deffn Command fill-paragraph justify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 @cindex filling a paragraph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 This command fills the paragraph at or after point. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 @var{justify} is non-@code{nil}, each line is justified as well.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 It uses the ordinary paragraph motion commands to find paragraph
290
c9fe270a4101 Import from CVS: tag r21-0b43
cvs
parents: 0
diff changeset
1136 boundaries. @xref{Paragraphs,,, xemacs, The XEmacs User's Manual}.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 @deffn Command fill-region start end &optional justify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 This command fills each of the paragraphs in the region from @var{start}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 to @var{end}. It justifies as well if @var{justify} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 non-@code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 The variable @code{paragraph-separate} controls how to distinguish
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 paragraphs. @xref{Standard Regexps}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 @deffn Command fill-individual-paragraphs start end &optional justify mail-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 This command fills each paragraph in the region according to its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 individual fill prefix. Thus, if the lines of a paragraph were indented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 with spaces, the filled paragraph will remain indented in the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 The first two arguments, @var{start} and @var{end}, are the beginning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 and end of the region to be filled. The third and fourth arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 @var{justify} and @var{mail-flag}, are optional. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 @var{justify} is non-@code{nil}, the paragraphs are justified as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 well as filled. If @var{mail-flag} is non-@code{nil}, it means the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 function is operating on a mail message and therefore should not fill
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 the header lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 Ordinarily, @code{fill-individual-paragraphs} regards each change in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 indentation as starting a new paragraph. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 @code{fill-individual-varying-indent} is non-@code{nil}, then only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 separator lines separate paragraphs. That mode can handle indented
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 paragraphs with additional indentation on the first line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 @defopt fill-individual-varying-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 This variable alters the action of @code{fill-individual-paragraphs} as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 described above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 @deffn Command fill-region-as-paragraph start end &optional justify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 This command considers a region of text as a paragraph and fills it. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 the region was made up of many paragraphs, the blank lines between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 paragraphs are removed. This function justifies as well as filling when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 @var{justify} is non-@code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 In an interactive call, any prefix argument requests justification.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 In Adaptive Fill mode, which is enabled by default,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 @code{fill-region-as-paragraph} on an indented paragraph when there is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 no fill prefix uses the indentation of the second line of the paragraph
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 as the fill prefix.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 @deffn Command justify-current-line how eop nosqueeze
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 This command inserts spaces between the words of the current line so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 that the line ends exactly at @code{fill-column}. It returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 The argument @var{how}, if non-@code{nil} specifies explicitly the style
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 of justification. It can be @code{left}, @code{right}, @code{full},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 @code{center}, or @code{none}. If it is @code{t}, that means to do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 follow specified justification style (see @code{current-justification},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 below). @code{nil} means to do full justification.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 If @var{eop} is non-@code{nil}, that means do left-justification when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 @code{current-justification} specifies full justification. This is used
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 for the last line of a paragraph; even if the paragraph as a whole is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 fully justified, the last line should not be.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 If @var{nosqueeze} is non-@code{nil}, that means do not change interior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 @defopt default-justification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 This variable's value specifies the style of justification to use for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 text that doesn't specify a style with a text property. The possible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 values are @code{left}, @code{right}, @code{full}, @code{center}, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 @code{none}. The default value is @code{left}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 @defun current-justification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 This function returns the proper justification style to use for filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 the text around point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 @defvar fill-paragraph-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 This variable provides a way for major modes to override the filling of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 paragraphs. If the value is non-@code{nil}, @code{fill-paragraph} calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 this function to do the work. If the function returns a non-@code{nil}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 value, @code{fill-paragraph} assumes the job is done, and immediately
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 returns that value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 The usual use of this feature is to fill comments in programming
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 language modes. If the function needs to fill a paragraph in the usual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 way, it can do so as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 (let ((fill-paragraph-function nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 (fill-paragraph arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 @defvar use-hard-newlines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 If this variable is non-@code{nil}, the filling functions do not delete
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 newlines that have the @code{hard} text property. These ``hard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 newlines'' act as paragraph separators.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 @node Margins
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 @section Margins for Filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 @defopt fill-prefix
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 This variable specifies a string of text that appears at the beginning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 of normal text lines and should be disregarded when filling them. Any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 line that fails to start with the fill prefix is considered the start of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 a paragraph; so is any line that starts with the fill prefix followed by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 additional whitespace. Lines that start with the fill prefix but no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 additional whitespace are ordinary text lines that can be filled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 together. The resulting filled lines also start with the fill prefix.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 The fill prefix follows the left margin whitespace, if any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 @defopt fill-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 This buffer-local variable specifies the maximum width of filled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 lines. Its value should be an integer, which is a number of columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 All the filling, justification and centering commands are affected by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 this variable, including Auto Fill mode (@pxref{Auto Filling}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 As a practical matter, if you are writing text for other people to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 read, you should set @code{fill-column} to no more than 70. Otherwise
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 the line will be too long for people to read comfortably, and this can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 make the text seem clumsy.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 @defvar default-fill-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 The value of this variable is the default value for @code{fill-column} in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 buffers that do not override it. This is the same as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 @code{(default-value 'fill-column)}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 The default value for @code{default-fill-column} is 70.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 @deffn Command set-left-margin from to margin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 This sets the @code{left-margin} property on the text from @var{from} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 @var{to} to the value @var{margin}. If Auto Fill mode is enabled, this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 command also refills the region to fit the new margin.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 @deffn Command set-right-margin from to margin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 This sets the @code{right-margin} property on the text from @var{from}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 to @var{to} to the value @var{margin}. If Auto Fill mode is enabled,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 this command also refills the region to fit the new margin.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 @defun current-left-margin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 This function returns the proper left margin value to use for filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 the text around point. The value is the sum of the @code{left-margin}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 property of the character at the start of the current line (or zero if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 none), and the value of the variable @code{left-margin}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 @defun current-fill-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 This function returns the proper fill column value to use for filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 the text around point. The value is the value of the @code{fill-column}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 variable, minus the value of the @code{right-margin} property of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 character after point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 @deffn Command move-to-left-margin &optional n force
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 This function moves point to the left margin of the current line. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 column moved to is determined by calling the function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 @code{current-left-margin}. If the argument @var{n} is non-@code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 @code{move-to-left-margin} moves forward @var{n}@minus{}1 lines first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 If @var{force} is non-@code{nil}, that says to fix the line's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 indentation if that doesn't match the left margin value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 @defun delete-to-left-margin from to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 This function removes left margin indentation from the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 between @var{from} and @var{to}. The amount of indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 to delete is determined by calling @code{current-left-margin}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 In no case does this function delete non-whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 @defun indent-to-left-margin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 This is the default @code{indent-line-function}, used in Fundamental
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 mode, Text mode, etc. Its effect is to adjust the indentation at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 beginning of the current line to the value specified by the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 @code{left-margin}. This may involve either inserting or deleting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 @defvar left-margin
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 This variable specifies the base left margin column. In Fundamental
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 mode, @key{LFD} indents to this column. This variable automatically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 becomes buffer-local when set in any fashion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 @node Auto Filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 @section Auto Filling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 @cindex filling, automatic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 @cindex Auto Fill mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 Auto Fill mode is a minor mode that fills lines automatically as text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 is inserted. This section describes the hook used by Auto Fill mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 For a description of functions that you can call explicitly to fill and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 justify existing text, see @ref{Filling}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 Auto Fill mode also enables the functions that change the margins and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 justification style to refill portions of the text. @xref{Margins}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 @defvar auto-fill-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 The value of this variable should be a function (of no arguments) to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 called after self-inserting a space or a newline. It may be @code{nil},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 in which case nothing special is done in that case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 The value of @code{auto-fill-function} is @code{do-auto-fill} when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 Auto-Fill mode is enabled. That is a function whose sole purpose is to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 implement the usual strategy for breaking a line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 @quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 In older Emacs versions, this variable was named @code{auto-fill-hook},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 but since it is not called with the standard convention for hooks, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 was renamed to @code{auto-fill-function} in version 19.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 @end quotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 @node Sorting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 @section Sorting Text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 @cindex sorting text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 The sorting functions described in this section all rearrange text in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 a buffer. This is in contrast to the function @code{sort}, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 rearranges the order of the elements of a list (@pxref{Rearrangement}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 The values returned by these functions are not meaningful.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 @defun sort-subr reverse nextrecfun endrecfun &optional startkeyfun endkeyfun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 This function is the general text-sorting routine that divides a buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 into records and sorts them. Most of the commands in this section use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 To understand how @code{sort-subr} works, consider the whole accessible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 portion of the buffer as being divided into disjoint pieces called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 @dfn{sort records}. The records may or may not be contiguous; they may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 not overlap. A portion of each sort record (perhaps all of it) is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 designated as the sort key. Sorting rearranges the records in order by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 their sort keys.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 Usually, the records are rearranged in order of ascending sort key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386 If the first argument to the @code{sort-subr} function, @var{reverse},
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 is non-@code{nil}, the sort records are rearranged in order of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 descending sort key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 The next four arguments to @code{sort-subr} are functions that are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 called to move point across a sort record. They are called many times
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 from within @code{sort-subr}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 @enumerate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 @var{nextrecfun} is called with point at the end of a record. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 function moves point to the start of the next record. The first record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 is assumed to start at the position of point when @code{sort-subr} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 called. Therefore, you should usually move point to the beginning of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 the buffer before calling @code{sort-subr}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 This function can indicate there are no more sort records by leaving
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 point at the end of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 @var{endrecfun} is called with point within a record. It moves point to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 the end of the record.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 @var{startkeyfun} is called to move point from the start of a record to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 the start of the sort key. This argument is optional; if it is omitted,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 the whole record is the sort key. If supplied, the function should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 either return a non-@code{nil} value to be used as the sort key, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 return @code{nil} to indicate that the sort key is in the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 starting at point. In the latter case, @var{endkeyfun} is called to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 find the end of the sort key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 @item
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 @var{endkeyfun} is called to move point from the start of the sort key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 to the end of the sort key. This argument is optional. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 @var{startkeyfun} returns @code{nil} and this argument is omitted (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 @code{nil}), then the sort key extends to the end of the record. There
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 is no need for @var{endkeyfun} if @var{startkeyfun} returns a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 non-@code{nil} value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 @end enumerate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 As an example of @code{sort-subr}, here is the complete function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 definition for @code{sort-lines}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 ;; @r{Note that the first two lines of doc string}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433 ;; @r{are effectively one line when viewed by a user.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 (defun sort-lines (reverse beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 "Sort lines in region alphabetically.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436 Called from a program, there are three arguments:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 REVERSE (non-nil means reverse order),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 and BEG and END (the region to sort)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 (interactive "P\nr")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 (narrow-to-region beg end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 (sort-subr reverse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 'forward-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 'end-of-line)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 Here @code{forward-line} moves point to the start of the next record,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 and @code{end-of-line} moves point to the end of record. We do not pass
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 the arguments @var{startkeyfun} and @var{endkeyfun}, because the entire
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 record is used as the sort key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 The @code{sort-paragraphs} function is very much the same, except that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 its @code{sort-subr} call looks like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 (sort-subr reverse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 (skip-chars-forward "\n \t\f")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 'forward-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 @deffn Command sort-regexp-fields reverse record-regexp key-regexp start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 This command sorts the region between @var{start} and @var{end}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 alphabetically as specified by @var{record-regexp} and @var{key-regexp}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 If @var{reverse} is a negative integer, then sorting is in reverse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 Alphabetical sorting means that two sort keys are compared by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 comparing the first characters of each, the second characters of each,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 and so on. If a mismatch is found, it means that the sort keys are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 unequal; the sort key whose character is less at the point of first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 mismatch is the lesser sort key. The individual characters are compared
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
1481 according to their numerical values. Since Emacs uses the @sc{ASCII}
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 character set, the ordering in that set determines alphabetical order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 @c version 19 change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 The value of the @var{record-regexp} argument specifies how to divide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 the buffer into sort records. At the end of each record, a search is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 done for this regular expression, and the text that matches it is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 next record. For example, the regular expression @samp{^.+$}, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 matches lines with at least one character besides a newline, would make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 each such line into a sort record. @xref{Regular Expressions}, for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 description of the syntax and meaning of regular expressions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 The value of the @var{key-regexp} argument specifies what part of each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 record is the sort key. The @var{key-regexp} could match the whole
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 record, or only a part. In the latter case, the rest of the record has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 no effect on the sorted order of records, but it is carried along when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 the record moves to its new position.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 The @var{key-regexp} argument can refer to the text matched by a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 subexpression of @var{record-regexp}, or it can be a regular expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 on its own.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 If @var{key-regexp} is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 @table @asis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 @item @samp{\@var{digit}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 then the text matched by the @var{digit}th @samp{\(...\)} parenthesis
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 grouping in @var{record-regexp} is the sort key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 @item @samp{\&}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 then the whole record is the sort key.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 @item a regular expression
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 then @code{sort-regexp-fields} searches for a match for the regular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 expression within the record. If such a match is found, it is the sort
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 key. If there is no match for @var{key-regexp} within a record then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 that record is ignored, which means its position in the buffer is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 changed. (The other records may move around it.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 @end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 For example, if you plan to sort all the lines in the region by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 first word on each line starting with the letter @samp{f}, you should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 set @var{record-regexp} to @samp{^.*$} and set @var{key-regexp} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 @samp{\<f\w*\>}. The resulting expression looks like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (sort-regexp-fields nil "^.*$" "\\<f\\w*\\>"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 (region-beginning)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 (region-end))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 If you call @code{sort-regexp-fields} interactively, it prompts for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 @var{record-regexp} and @var{key-regexp} in the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 @deffn Command sort-lines reverse start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 This command alphabetically sorts lines in the region between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 @var{start} and @var{end}. If @var{reverse} is non-@code{nil}, the sort
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 is in reverse order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 @deffn Command sort-paragraphs reverse start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 This command alphabetically sorts paragraphs in the region between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 @var{start} and @var{end}. If @var{reverse} is non-@code{nil}, the sort
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 is in reverse order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 @deffn Command sort-pages reverse start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 This command alphabetically sorts pages in the region between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 @var{start} and @var{end}. If @var{reverse} is non-@code{nil}, the sort
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 is in reverse order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 @deffn Command sort-fields field start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 This command sorts lines in the region between @var{start} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 @var{end}, comparing them alphabetically by the @var{field}th field
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 of each line. Fields are separated by whitespace and numbered starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 from 1. If @var{field} is negative, sorting is by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 @w{@minus{}@var{field}th} field from the end of the line. This command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 is useful for sorting tables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 @deffn Command sort-numeric-fields field start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 This command sorts lines in the region between @var{start} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 @var{end}, comparing them numerically by the @var{field}th field of each
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 line. The specified field must contain a number in each line of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 region. Fields are separated by whitespace and numbered starting from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 1. If @var{field} is negative, sorting is by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 @w{@minus{}@var{field}th} field from the end of the line. This command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 is useful for sorting tables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 @deffn Command sort-columns reverse &optional beg end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 This command sorts the lines in the region between @var{beg} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 @var{end}, comparing them alphabetically by a certain range of columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 The column positions of @var{beg} and @var{end} bound the range of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 columns to sort on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 If @var{reverse} is non-@code{nil}, the sort is in reverse order.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 One unusual thing about this command is that the entire line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 containing position @var{beg}, and the entire line containing position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 @var{end}, are included in the region sorted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 Note that @code{sort-columns} uses the @code{sort} utility program,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 and so cannot work properly on text containing tab characters. Use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 @kbd{M-x @code{untabify}} to convert tabs to spaces before sorting.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 @node Columns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 @comment node-name, next, previous, up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 @section Counting Columns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 @cindex columns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 @cindex counting columns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 @cindex horizontal position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 The column functions convert between a character position (counting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 characters from the beginning of the buffer) and a column position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 (counting screen characters from the beginning of a line).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 A character counts according to the number of columns it occupies on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 the screen. This means control characters count as occupying 2 or 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 columns, depending upon the value of @code{ctl-arrow}, and tabs count as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 occupying a number of columns that depends on the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 @code{tab-width} and on the column where the tab begins. @xref{Usual Display}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 Column number computations ignore the width of the window and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 amount of horizontal scrolling. Consequently, a column value can be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 arbitrarily high. The first (or leftmost) column is numbered 0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 @defun current-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 This function returns the horizontal position of point, measured in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 columns, counting from 0 at the left margin. The column position is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 sum of the widths of all the displayed representations of the characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 between the start of the current line and point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 For an example of using @code{current-column}, see the description of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 @code{count-lines} in @ref{Text Lines}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 @defun move-to-column column &optional force
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 This function moves point to @var{column} in the current line. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 calculation of @var{column} takes into account the widths of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 displayed representations of the characters between the start of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 line and point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 If column @var{column} is beyond the end of the line, point moves to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 end of the line. If @var{column} is negative, point moves to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 beginning of the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 If it is impossible to move to column @var{column} because that is in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 the middle of a multicolumn character such as a tab, point moves to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 end of that character. However, if @var{force} is non-@code{nil}, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 @var{column} is in the middle of a tab, then @code{move-to-column}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 converts the tab into spaces so that it can move precisely to column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 @var{column}. Other multicolumn characters can cause anomalies despite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 @var{force}, since there is no way to split them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 The argument @var{force} also has an effect if the line isn't long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 enough to reach column @var{column}; in that case, it says to add
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 whitespace at the end of the line to reach that column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 If @var{column} is not an integer, an error is signaled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 The return value is the column number actually moved to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 @node Indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 @section Indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 @cindex indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 The indentation functions are used to examine, move to, and change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 whitespace that is at the beginning of a line. Some of the functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 can also change whitespace elsewhere on a line. Columns and indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 count from zero at the left margin.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 * Primitive Indent:: Functions used to count and insert indentation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 * Mode-Specific Indent:: Customize indentation for different modes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 * Region Indent:: Indent all the lines in a region.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 * Relative Indent:: Indent the current line based on previous lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 * Indent Tabs:: Adjustable, typewriter-like tab stops.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 * Motion by Indent:: Move to first non-blank character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 @node Primitive Indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 @subsection Indentation Primitives
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 This section describes the primitive functions used to count and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 insert indentation. The functions in the following sections use these
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 primitives.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 @defun current-indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 @comment !!Type Primitive Function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 @comment !!SourceFile indent.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 This function returns the indentation of the current line, which is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 the horizontal position of the first nonblank character. If the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 contents are entirely blank, then this is the horizontal position of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 end of the line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 @deffn Command indent-to column &optional minimum
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 @comment !!Type Primitive Function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 @comment !!SourceFile indent.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 This function indents from point with tabs and spaces until @var{column}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 is reached. If @var{minimum} is specified and non-@code{nil}, then at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 least that many spaces are inserted even if this requires going beyond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 @var{column}. Otherwise the function does nothing if point is already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 beyond @var{column}. The value is the column at which the inserted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 indentation ends.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 @defopt indent-tabs-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 @comment !!SourceFile indent.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 If this variable is non-@code{nil}, indentation functions can insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 tabs as well as spaces. Otherwise, they insert only spaces. Setting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 this variable automatically makes it local to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 @node Mode-Specific Indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 @subsection Indentation Controlled by Major Mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 An important function of each major mode is to customize the @key{TAB}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706 key to indent properly for the language being edited. This section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 describes the mechanism of the @key{TAB} key and how to control it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 The functions in this section return unpredictable values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 @defvar indent-line-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 This variable's value is the function to be used by @key{TAB} (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 various commands) to indent the current line. The command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 @code{indent-according-to-mode} does no more than call this function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 In Lisp mode, the value is the symbol @code{lisp-indent-line}; in C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 mode, @code{c-indent-line}; in Fortran mode, @code{fortran-indent-line}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 In Fundamental mode, Text mode, and many other modes with no standard
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 for indentation, the value is @code{indent-to-left-margin} (which is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 default value).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 @deffn Command indent-according-to-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 This command calls the function in @code{indent-line-function} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 indent the current line in a way appropriate for the current major mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 @deffn Command indent-for-tab-command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 This command calls the function in @code{indent-line-function} to indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 the current line; except that if that function is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 @code{indent-to-left-margin}, it calls @code{insert-tab} instead. (That
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 is a trivial command that inserts a tab character.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 @deffn Command newline-and-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 @comment !!SourceFile simple.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 This function inserts a newline, then indents the new line (the one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 following the newline just inserted) according to the major mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 It does indentation by calling the current @code{indent-line-function}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 In programming language modes, this is the same thing @key{TAB} does,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 but in some text modes, where @key{TAB} inserts a tab,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 @code{newline-and-indent} indents to the column specified by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 @code{left-margin}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 @deffn Command reindent-then-newline-and-indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 @comment !!SourceFile simple.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 This command reindents the current line, inserts a newline at point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 and then reindents the new line (the one following the newline just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 inserted).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 This command does indentation on both lines according to the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 major mode, by calling the current value of @code{indent-line-function}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 In programming language modes, this is the same thing @key{TAB} does,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 but in some text modes, where @key{TAB} inserts a tab,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 @code{reindent-then-newline-and-indent} indents to the column specified
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 by @code{left-margin}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 @node Region Indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 @subsection Indenting an Entire Region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 This section describes commands that indent all the lines in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 region. They return unpredictable values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 @deffn Command indent-region start end to-column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 This command indents each nonblank line starting between @var{start}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 (inclusive) and @var{end} (exclusive). If @var{to-column} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 @code{nil}, @code{indent-region} indents each nonblank line by calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 the current mode's indentation function, the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 @code{indent-line-function}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 If @var{to-column} is non-@code{nil}, it should be an integer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 specifying the number of columns of indentation; then this function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 gives each line exactly that much indentation, by either adding or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 deleting whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 If there is a fill prefix, @code{indent-region} indents each line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 by making it start with the fill prefix.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 @defvar indent-region-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 The value of this variable is a function that can be used by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 @code{indent-region} as a short cut. You should design the function so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 that it will produce the same results as indenting the lines of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 region one by one, but presumably faster.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 If the value is @code{nil}, there is no short cut, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 @code{indent-region} actually works line by line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 A short-cut function is useful in modes such as C mode and Lisp mode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 where the @code{indent-line-function} must scan from the beginning of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 the function definition: applying it to each line would be quadratic in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 time. The short cut can update the scan information as it moves through
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 the lines indenting them; this takes linear time. In a mode where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 indenting a line individually is fast, there is no need for a short cut.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 @code{indent-region} with a non-@code{nil} argument @var{to-column} has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 a different meaning and does not use this variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 @deffn Command indent-rigidly start end count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 @comment !!SourceFile indent.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 This command indents all lines starting between @var{start}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 (inclusive) and @var{end} (exclusive) sideways by @var{count} columns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 This ``preserves the shape'' of the affected region, moving it as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 rigid unit. Consequently, this command is useful not only for indenting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 regions of unindented text, but also for indenting regions of formatted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 code.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 For example, if @var{count} is 3, this command adds 3 columns of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 indentation to each of the lines beginning in the region specified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 In Mail mode, @kbd{C-c C-y} (@code{mail-yank-original}) uses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 @code{indent-rigidly} to indent the text copied from the message being
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 replied to.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 @defun indent-code-rigidly start end columns &optional nochange-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 This is like @code{indent-rigidly}, except that it doesn't alter lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 that start within strings or comments.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 In addition, it doesn't alter a line if @var{nochange-regexp} matches at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 the beginning of the line (if @var{nochange-regexp} is non-@code{nil}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 @node Relative Indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 @subsection Indentation Relative to Previous Lines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 This section describes two commands that indent the current line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 based on the contents of previous lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 @deffn Command indent-relative &optional unindented-ok
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 This command inserts whitespace at point, extending to the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 column as the next @dfn{indent point} of the previous nonblank line. An
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 indent point is a non-whitespace character following whitespace. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 next indent point is the first one at a column greater than the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 column of point. For example, if point is underneath and to the left of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 the first non-blank character of a line of text, it moves to that column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 by inserting whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 If the previous nonblank line has no next indent point (i.e., none at a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 great enough column position), @code{indent-relative} either does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 nothing (if @var{unindented-ok} is non-@code{nil}) or calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 @code{tab-to-tab-stop}. Thus, if point is underneath and to the right
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 of the last column of a short line of text, this command ordinarily
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 moves point to the next tab stop by inserting whitespace.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 The return value of @code{indent-relative} is unpredictable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 In the following example, point is at the beginning of the second
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 line:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 This line is indented twelve spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 @point{}The quick brown fox jumped.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 Evaluation of the expression @code{(indent-relative nil)} produces the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 This line is indented twelve spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 @point{}The quick brown fox jumped.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 In this example, point is between the @samp{m} and @samp{p} of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 @samp{jumped}:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 This line is indented twelve spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 The quick brown fox jum@point{}ped.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 @noindent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 Evaluation of the expression @code{(indent-relative nil)} produces the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 following:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 This line is indented twelve spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 The quick brown fox jum @point{}ped.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 @deffn Command indent-relative-maybe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 @comment !!SourceFile indent.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 This command indents the current line like the previous nonblank line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 It calls @code{indent-relative} with @code{t} as the @var{unindented-ok}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 argument. The return value is unpredictable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 If the previous nonblank line has no indent points beyond the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 column, this command does nothing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 @node Indent Tabs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 @subsection Adjustable ``Tab Stops''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 @cindex tabs stops for indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 This section explains the mechanism for user-specified ``tab stops''
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 and the mechanisms that use and set them. The name ``tab stops'' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 used because the feature is similar to that of the tab stops on a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 typewriter. The feature works by inserting an appropriate number of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 spaces and tab characters to reach the next tab stop column; it does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 affect the display of tab characters in the buffer (@pxref{Usual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 Display}). Note that the @key{TAB} character as input uses this tab
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 stop feature only in a few major modes, such as Text mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 @deffn Command tab-to-tab-stop
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918 This command inserts spaces or tabs up to the next tab stop column
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 defined by @code{tab-stop-list}. It searches the list for an element
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 greater than the current column number, and uses that element as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 column to indent to. It does nothing if no such element is found.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 @defopt tab-stop-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 This variable is the list of tab stop columns used by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 @code{tab-to-tab-stops}. The elements should be integers in increasing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 order. The tab stop columns need not be evenly spaced.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 Use @kbd{M-x edit-tab-stops} to edit the location of tab stops
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 interactively.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 @end defopt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 @node Motion by Indent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 @subsection Indentation-Based Motion Commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 These commands, primarily for interactive use, act based on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 indentation in the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 @deffn Command back-to-indentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940 @comment !!SourceFile simple.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 This command moves point to the first non-whitespace character in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 current line (which is the line in which point is located). It returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 @deffn Command backward-to-indentation arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 @comment !!SourceFile simple.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 This command moves point backward @var{arg} lines and then to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 first nonblank character on that line. It returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 @deffn Command forward-to-indentation arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 @comment !!SourceFile simple.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 This command moves point forward @var{arg} lines and then to the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 nonblank character on that line. It returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 @node Case Changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 @section Case Changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 @cindex case changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 The case change commands described here work on text in the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 buffer. @xref{Character Case}, for case conversion commands that work
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 on strings and characters. @xref{Case Tables}, for how to customize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 which characters are upper or lower case and how to convert them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 @deffn Command capitalize-region start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 This function capitalizes all words in the region defined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 @var{start} and @var{end}. To capitalize means to convert each word's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 first character to upper case and convert the rest of each word to lower
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 case. The function returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 If one end of the region is in the middle of a word, the part of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 word within the region is treated as an entire word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 When @code{capitalize-region} is called interactively, @var{start} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 @var{end} are point and the mark, with the smallest first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 This is the contents of the 5th foo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 (capitalize-region 1 44)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 This Is The Contents Of The 5th Foo.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 @deffn Command downcase-region start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 This function converts all of the letters in the region defined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 @var{start} and @var{end} to lower case. The function returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 When @code{downcase-region} is called interactively, @var{start} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 @var{end} are point and the mark, with the smallest first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 @deffn Command upcase-region start end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 This function converts all of the letters in the region defined by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 @var{start} and @var{end} to upper case. The function returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 When @code{upcase-region} is called interactively, @var{start} and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 @var{end} are point and the mark, with the smallest first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 @deffn Command capitalize-word count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 This function capitalizes @var{count} words after point, moving point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 over as it does. To capitalize means to convert each word's first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 character to upper case and convert the rest of each word to lower case.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 If @var{count} is negative, the function capitalizes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 @minus{}@var{count} previous words but does not move point. The value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 If point is in the middle of a word, the part of the word before point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 is ignored when moving forward. The rest is treated as an entire word.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 When @code{capitalize-word} is called interactively, @var{count} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 set to the numeric prefix argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 @deffn Command downcase-word count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 This function converts the @var{count} words after point to all lower
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 case, moving point over as it does. If @var{count} is negative, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 converts the @minus{}@var{count} previous words but does not move point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 The value is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 When @code{downcase-word} is called interactively, @var{count} is set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 to the numeric prefix argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 @deffn Command upcase-word count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 This function converts the @var{count} words after point to all upper
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 case, moving point over as it does. If @var{count} is negative, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 converts the @minus{}@var{count} previous words but does not move point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 The value is @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 When @code{upcase-word} is called interactively, @var{count} is set to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 the numeric prefix argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 @node Text Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 @section Text Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 @cindex text properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 @cindex attributes of text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 @cindex properties of text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 Text properties are an alternative interface to extents
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 (@pxref{Extents}), and are built on top of them. They are useful when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 you want to view textual properties as being attached to the characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 themselves rather than to intervals of characters. The text property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 interface is compatible with FSF Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 Each character position in a buffer or a string can have a @dfn{text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 property list}, much like the property list of a symbol (@pxref{Property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 Lists}). The properties belong to a particular character at a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 particular place, such as, the letter @samp{T} at the beginning of this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 sentence or the first @samp{o} in @samp{foo}---if the same character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 occurs in two different places, the two occurrences generally have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 different properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 Each property has a name and a value. Both of these can be any Lisp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 object, but the name is normally a symbol. The usual way to access the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 property list is to specify a name and ask what value corresponds to it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 @ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 If a character has a @code{category} property, we call it the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 @dfn{category} of the character. It should be a symbol. The properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 of the symbol serve as defaults for the properties of the character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 Note that FSF Emacs also looks at the @code{category} property to find
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 defaults for text properties. We consider this too bogus to implement.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 Copying text between strings and buffers preserves the properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 along with the characters; this includes such diverse functions as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 @code{substring}, @code{insert}, and @code{buffer-substring}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 @menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087 * Examining Properties:: Looking at the properties of one character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 * Changing Properties:: Setting the properties of a range of text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 * Property Search:: Searching for where a property changes value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 * Special Properties:: Particular properties with special meanings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 * Saving Properties:: Saving text properties in files, and reading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 them back.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 @end menu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 @node Examining Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 @subsection Examining Text Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 The simplest way to examine text properties is to ask for the value of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 a particular property of a particular character. For that, use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 @code{get-text-property}. Use @code{text-properties-at} to get the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 entire property list of a character. @xref{Property Search}, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 functions to examine the properties of a number of characters at once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 These functions handle both strings and buffers. (Keep in mind that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 positions in a string start from 0, whereas positions in a buffer start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106 from 1.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 @defun get-text-property pos prop &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 This function returns the value of the @var{prop} property of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 character after position @var{pos} in @var{object} (a buffer or string).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 The argument @var{object} is optional and defaults to the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113 @ignore @c Bogus as hell!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 If there is no @var{prop} property strictly speaking, but the character
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 has a category that is a symbol, then @code{get-text-property} returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 the @var{prop} property of that symbol.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 @defun get-char-property pos prop &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 This function is like @code{get-text-property}, except that it checks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 all extents, not just text-property extents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 @ignore Does not apply in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 The argument @var{object} may be a string, a buffer, or a window. If it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 is a window, then the buffer displayed in that window is used for text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 properties and overlays, but only the overlays active for that window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 are considered. If @var{object} is a buffer, then all overlays in that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 buffer are considered, as well as text properties. If @var{object} is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 string, only text properties are considered, since strings never have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 overlays.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 @defun text-properties-at position &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 This function returns the entire property list of the character at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 @var{position} in the string or buffer @var{object}. If @var{object} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 @code{nil}, it defaults to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 @defvar default-text-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 This variable holds a property list giving default values for text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 properties. Whenever a character does not specify a value for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 property, the value stored in this list is used instead. Here is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145 an example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 (setq default-text-properties '(foo 69))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 ;; @r{Make sure character 1 has no properties of its own.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 (set-text-properties 1 2 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 ;; @r{What we get, when we ask, is the default value.}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 (get-text-property 1 'foo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 @result{} 69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 @node Changing Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 @subsection Changing Text Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 The primitives for changing properties apply to a specified range of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 text. The function @code{set-text-properties} (see end of section) sets
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 the entire property list of the text in that range; more often, it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 useful to add, change, or delete just certain properties specified by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 Since text properties are considered part of the buffer's contents, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 can affect how the buffer looks on the screen, any change in the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 properties is considered a buffer modification. Buffer text property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 changes are undoable (@pxref{Undo}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 @defun put-text-property start end prop value &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 This function sets the @var{prop} property to @var{value} for the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 between @var{start} and @var{end} in the string or buffer @var{object}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 If @var{object} is @code{nil}, it defaults to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 @defun add-text-properties start end props &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 This function modifies the text properties for the text between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 @var{start} and @var{end} in the string or buffer @var{object}. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 @var{object} is @code{nil}, it defaults to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 The argument @var{props} specifies which properties to change. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 should have the form of a property list (@pxref{Property Lists}): a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 whose elements include the property names followed alternately by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 corresponding values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 The return value is @code{t} if the function actually changed some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 property's value; @code{nil} otherwise (if @var{props} is @code{nil} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 its values agree with those in the text).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 For example, here is how to set the @code{comment} and @code{face}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 properties of a range of text:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 (add-text-properties @var{start} @var{end}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196 '(comment t face highlight))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 @defun remove-text-properties start end props &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 This function deletes specified text properties from the text between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 @var{start} and @var{end} in the string or buffer @var{object}. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203 @var{object} is @code{nil}, it defaults to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 The argument @var{props} specifies which properties to delete. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 should have the form of a property list (@pxref{Property Lists}): a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 whose elements are property names alternating with corresponding values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 But only the names matter---the values that accompany them are ignored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209 For example, here's how to remove the @code{face} property.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 (remove-text-properties @var{start} @var{end} '(face nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 The return value is @code{t} if the function actually changed some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 property's value; @code{nil} otherwise (if @var{props} is @code{nil} or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217 if no character in the specified text had any of those properties).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 @defun set-text-properties start end props &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 This function completely replaces the text property list for the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 between @var{start} and @var{end} in the string or buffer @var{object}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 If @var{object} is @code{nil}, it defaults to the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 The argument @var{props} is the new property list. It should be a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 whose elements are property names alternating with corresponding values.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 After @code{set-text-properties} returns, all the characters in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 specified range have identical properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 If @var{props} is @code{nil}, the effect is to get rid of all properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 from the specified range of text. Here's an example:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 (set-text-properties @var{start} @var{end} nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 See also the function @code{buffer-substring-without-properties}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 (@pxref{Buffer Contents}) which copies text from the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 but does not copy its properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 @node Property Search
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 @subsection Property Search Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 In typical use of text properties, most of the time several or many
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 consecutive characters have the same value for a property. Rather than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 writing your programs to examine characters one by one, it is much
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 faster to process chunks of text that have the same property value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 Here are functions you can use to do this. They use @code{eq} for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252 comparing property values. In all cases, @var{object} defaults to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 For high performance, it's very important to use the @var{limit}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 argument to these functions, especially the ones that search for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 single property---otherwise, they may spend a long time scanning to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 end of the buffer, if the property you are interested in does not change.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 Remember that a position is always between two characters; the position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 returned by these functions is between two characters with different
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 properties.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 @defun next-property-change pos &optional object limit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 The function scans the text forward from position @var{pos} in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 string or buffer @var{object} till it finds a change in some text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 property, then returns the position of the change. In other words, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 returns the position of the first character beyond @var{pos} whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 properties are not identical to those of the character just after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 @var{pos}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 If @var{limit} is non-@code{nil}, then the scan ends at position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 @var{limit}. If there is no property change before that point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 @code{next-property-change} returns @var{limit}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 The value is @code{nil} if the properties remain unchanged all the way
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 to the end of @var{object} and @var{limit} is @code{nil}. If the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 is non-@code{nil}, it is a position greater than or equal to @var{pos}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 The value equals @var{pos} only when @var{limit} equals @var{pos}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 Here is an example of how to scan the buffer by chunks of text within
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 which all properties are constant:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 @smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 (while (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 (let ((plist (text-properties-at (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 (next-change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288 (or (next-property-change (point) (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 @r{Process text from point to @var{next-change}@dots{}}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 (goto-char next-change)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 @end smallexample
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 @defun next-single-property-change pos prop &optional object limit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 The function scans the text forward from position @var{pos} in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 string or buffer @var{object} till it finds a change in the @var{prop}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 property, then returns the position of the change. In other words, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 returns the position of the first character beyond @var{pos} whose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 @var{prop} property differs from that of the character just after
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 @var{pos}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 If @var{limit} is non-@code{nil}, then the scan ends at position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 @var{limit}. If there is no property change before that point,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305 @code{next-single-property-change} returns @var{limit}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 The value is @code{nil} if the property remains unchanged all the way to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 the end of @var{object} and @var{limit} is @code{nil}. If the value is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 non-@code{nil}, it is a position greater than or equal to @var{pos}; it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 equals @var{pos} only if @var{limit} equals @var{pos}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 @defun previous-property-change pos &optional object limit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 This is like @code{next-property-change}, but scans back from @var{pos}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315 instead of forward. If the value is non-@code{nil}, it is a position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 less than or equal to @var{pos}; it equals @var{pos} only if @var{limit}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 equals @var{pos}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 @defun previous-single-property-change pos prop &optional object limit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 This is like @code{next-single-property-change}, but scans back from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322 @var{pos} instead of forward. If the value is non-@code{nil}, it is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323 position less than or equal to @var{pos}; it equals @var{pos} only if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 @var{limit} equals @var{pos}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327 @defun text-property-any start end prop value &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 This function returns non-@code{nil} if at least one character between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329 @var{start} and @var{end} has a property @var{prop} whose value is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 @var{value}. More precisely, it returns the position of the first such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 character. Otherwise, it returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 The optional fifth argument, @var{object}, specifies the string or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 buffer to scan. Positions are relative to @var{object}. The default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 for @var{object} is the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 @defun text-property-not-all start end prop value &optional object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 This function returns non-@code{nil} if at least one character between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 @var{start} and @var{end} has a property @var{prop} whose value differs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341 from @var{value}. More precisely, it returns the position of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 first such character. Otherwise, it returns @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 The optional fifth argument, @var{object}, specifies the string or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 buffer to scan. Positions are relative to @var{object}. The default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 for @var{object} is the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 @node Special Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 @subsection Properties with Special Meanings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 The predefined properties are the same as those for extents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 @xref{Extent Properties}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 @ignore Changed in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 (deleted section describing FSF Emacs special text properties)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 @node Saving Properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 @subsection Saving Text Properties in Files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 @cindex text properties in files
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 @cindex saving text properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 You can save text properties in files, and restore text properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 when inserting the files, using these two hooks:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 @defvar write-region-annotate-functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 This variable's value is a list of functions for @code{write-region} to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 run to encode text properties in some fashion as annotations to the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 being written in the file. @xref{Writing to Files}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372 Each function in the list is called with two arguments: the start and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 end of the region to be written. These functions should not alter the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 contents of the buffer. Instead, they should return lists indicating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 annotations to write in the file in addition to the text in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378 Each function should return a list of elements of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 @code{(@var{position} . @var{string})}, where @var{position} is an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 integer specifying the relative position in the text to be written, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381 @var{string} is the annotation to add there.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 Each list returned by one of these functions must be already sorted in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 increasing order by @var{position}. If there is more than one function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385 @code{write-region} merges the lists destructively into one sorted list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 When @code{write-region} actually writes the text from the buffer to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 file, it intermixes the specified annotations at the corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 positions. All this takes place without modifying the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 @defvar after-insert-file-functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 This variable holds a list of functions for @code{insert-file-contents}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394 to call after inserting a file's contents. These functions should scan
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 the inserted text for annotations, and convert them to the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 properties they stand for.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 Each function receives one argument, the length of the inserted text;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 point indicates the start of that text. The function should scan that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400 text for annotations, delete them, and create the text properties that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401 the annotations specify. The function should return the updated length
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 of the inserted text, as it stands after those changes. The value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 returned by one function becomes the argument to the next function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 These functions should always return with point at the beginning of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406 the inserted text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 The intended use of @code{after-insert-file-functions} is for converting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409 some sort of textual annotations into actual text properties. But other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 uses may be possible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413 We invite users to write Lisp programs to store and retrieve text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 properties in files, using these hooks, and thus to experiment with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 various data formats and find good ones. Eventually we hope users
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 will produce good, general extensions we can install in Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418 We suggest not trying to handle arbitrary Lisp objects as property
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 names or property values---because a program that general is probably
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 difficult to write, and slow. Instead, choose a set of possible data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 types that are reasonably flexible, and not too hard to encode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423 @xref{Format Conversion}, for a related feature.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 @node Substitution
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426 @section Substituting for a Character Code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 The following functions replace characters within a specified region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429 based on their character codes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431 @defun subst-char-in-region start end old-char new-char &optional noundo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 @cindex replace characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 This function replaces all occurrences of the character @var{old-char}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 with the character @var{new-char} in the region of the current buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 defined by @var{start} and @var{end}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437 @cindex Outline mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 @cindex undo avoidance
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 If @var{noundo} is non-@code{nil}, then @code{subst-char-in-region} does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 not record the change for undo and does not mark the buffer as modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 This feature is used for controlling selective display (@pxref{Selective
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 Display}).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 @code{subst-char-in-region} does not move point and returns
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 @code{nil}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 @example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 This is the contents of the buffer before.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 @group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 (subst-char-in-region 1 20 ?i ?X)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 @result{} nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459 ThXs Xs the contents of the buffer before.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 ---------- Buffer: foo ----------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 @end group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 @end example
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 @defun translate-region start end table
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466 This function applies a translation table to the characters in the
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2467 buffer between positions @var{start} and @var{end}. The translation
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2468 table @var{table} can be either a string, a vector, or a char-table.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2469
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2470 If @var{table} is a string, its @var{n}th element is the mapping for the
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2471 character with code @var{n}.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2472
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2473 If @var{table} is a vector, its @var{n}th element is the mapping for
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2474 character with code @var{n}. Legal mappings are characters, strings, or
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2475 @code{nil} (meaning don't replace.)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2476
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2477 If @var{table} is a char-table, its elements describe the mapping
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2478 between characters and their replacements. The char-table should be of
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2479 type @code{char} or @code{generic}.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2480
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2481 When the @var{table} is a string or vector and its length is less than
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2482 the total number of characters (256 without Mule), any characters with
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2483 codes larger than the length of @var{table} are not altered by the
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2484 translation.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486 The return value of @code{translate-region} is the number of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 characters that were actually changed by the translation. This does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488 not count characters that were mapped into themselves in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 translation table.
414
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2490
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2491 @strong{NOTE}: Prior to XEmacs 21.2, the @var{table} argument was
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2492 allowed only to be a string. This is still the case in FSF Emacs.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2493
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2494 The following example creates a char-table that is passed to
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2495 @code{translate-region}, which translates character @samp{a} to
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2496 @samp{the letter a}, removes character @samp{b}, and translates
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2497 character @samp{c} to newline.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2498
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2499 @example
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2500 @group
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2501 ---------- Buffer: foo ----------
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2502 Here is a sentence in the buffer.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2503 ---------- Buffer: foo ----------
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2504 @end group
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2505
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2506 @group
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2507 (let ((table (make-char-table 'generic)))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2508 (put-char-table ?a "the letter a" table)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2509 (put-char-table ?b "" table)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2510 (put-char-table ?c ?\n table)
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2511 (translate-region (point-min) (point-max) table))
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2512 @result{} 3
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2513
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2514 ---------- Buffer: foo ----------
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2515 Here is the letter a senten
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2516 e in the uffer.
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2517 ---------- Buffer: foo ----------
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2518 @end group
da8ed4261e83 Import from CVS: tag r21-2-15
cvs
parents: 412
diff changeset
2519 @end example
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 @node Registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 @section Registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 @cindex registers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 A register is a sort of variable used in XEmacs editing that can hold a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 marker, a string, a rectangle, a window configuration (of one frame), or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 a frame configuration (of all frames). Each register is named by a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 single character. All characters, including control and meta characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 (but with the exception of @kbd{C-g}), can be used to name registers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 Thus, there are 255 possible registers. A register is designated in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 Emacs Lisp by a character that is its name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 The functions in this section return unpredictable values unless
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 otherwise stated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 @c Will change in version 19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 @defvar register-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 This variable is an alist of elements of the form @code{(@var{name} .
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 @var{contents})}. Normally, there is one element for each XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 register that has been used.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 The object @var{name} is a character (an integer) identifying the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 register. The object @var{contents} is a string, marker, or list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 representing the register contents. A string represents text stored in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 the register. A marker represents a position. A list represents a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 rectangle; its elements are strings, one per line of the rectangle.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 @defun get-register reg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 This function returns the contents of the register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 @var{reg}, or @code{nil} if it has no contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 @defun set-register reg value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 This function sets the contents of register @var{reg} to @var{value}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557 A register can be set to any value, but the other register functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 expect only certain data types. The return value is @var{value}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 @deffn Command view-register reg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 This command displays what is contained in register @var{reg}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 @ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 @deffn Command point-to-register reg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 This command stores both the current location of point and the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 buffer in register @var{reg} as a marker.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 @deffn Command jump-to-register reg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 @deffnx Command register-to-point reg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 @comment !!SourceFile register.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 This command restores the status recorded in register @var{reg}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 If @var{reg} contains a marker, it moves point to the position stored in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 the marker. Since both the buffer and the location within the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 are stored by the @code{point-to-register} function, this command can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 switch you to another buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 If @var{reg} contains a window configuration or a frame configuration.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582 @code{jump-to-register} restores that configuration.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 @deffn Command insert-register reg &optional beforep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 This command inserts contents of register @var{reg} into the current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 Normally, this command puts point before the inserted text, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 mark after it. However, if the optional second argument @var{beforep}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592 is non-@code{nil}, it puts the mark before and point after.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 You can pass a non-@code{nil} second argument @var{beforep} to this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 function interactively by supplying any prefix argument.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 If the register contains a rectangle, then the rectangle is inserted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 with its upper left corner at point. This means that text is inserted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 in the current line and underneath it on successive lines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 If the register contains something other than saved text (a string) or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 a rectangle (a list), currently useless things happen. This may be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 changed in the future.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 @ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 @deffn Command copy-to-register reg start end &optional delete-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 This command copies the region from @var{start} to @var{end} into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608 register @var{reg}. If @var{delete-flag} is non-@code{nil}, it deletes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 the region from the buffer after copying it into the register.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 @deffn Command prepend-to-register reg start end &optional delete-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 This command prepends the region from @var{start} to @var{end} into
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 register @var{reg}. If @var{delete-flag} is non-@code{nil}, it deletes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 the region from the buffer after copying it to the register.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 @deffn Command append-to-register reg start end &optional delete-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 This command appends the region from @var{start} to @var{end} to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 text already in register @var{reg}. If @var{delete-flag} is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621 non-@code{nil}, it deletes the region from the buffer after copying it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 to the register.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 @deffn Command copy-rectangle-to-register reg start end &optional delete-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 This command copies a rectangular region from @var{start} to @var{end}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627 into register @var{reg}. If @var{delete-flag} is non-@code{nil}, it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 deletes the region from the buffer after copying it to the register.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 @deffn Command window-configuration-to-register reg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 This function stores the window configuration of the selected frame in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 register @var{reg}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 @deffn Command frame-configuration-to-register reg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 This function stores the current frame configuration in register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 @var{reg}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 @end deffn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 @node Transposition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 @section Transposition of Text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 This subroutine is used by the transposition commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 @defun transpose-regions start1 end1 start2 end2 &optional leave-markers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648 This function exchanges two nonoverlapping portions of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 Arguments @var{start1} and @var{end1} specify the bounds of one portion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 and arguments @var{start2} and @var{end2} specify the bounds of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 other portion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 Normally, @code{transpose-regions} relocates markers with the transposed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 text; a marker previously positioned within one of the two transposed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 portions moves along with that portion, thus remaining between the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 two characters in their new position. However, if @var{leave-markers}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 is non-@code{nil}, @code{transpose-regions} does not do this---it leaves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 all markers unrelocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 @end defun
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661 @node Change Hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 @section Change Hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 @cindex change hooks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 @cindex hooks for text changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 These hook variables let you arrange to take notice of all changes in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 all buffers (or in a particular buffer, if you make them buffer-local).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 @ignore Not in XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 See also @ref{Special Properties}, for how to detect changes to specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 parts of the text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 @end ignore
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 The functions you use in these hooks should save and restore the match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 data if they do anything that uses regular expressions; otherwise, they
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 will interfere in bizarre ways with the editing operations that call
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 Buffer changes made while executing the following hooks don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 themselves cause any change hooks to be invoked.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 @defvar before-change-functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 This variable holds a list of a functions to call before any buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 modification. Each function gets two arguments, the beginning and end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 of the region that is about to change, represented as integers. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 buffer that is about to change is always the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 @defvar after-change-functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 This variable holds a list of a functions to call after any buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 modification. Each function receives three arguments: the beginning and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 end of the region just changed, and the length of the text that existed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 before the change. (To get the current length, subtract the region
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 beginning from the region end.) All three arguments are integers. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 buffer that's about to change is always the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 @defvar before-change-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 This obsolete variable holds one function to call before any buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699 modification (or @code{nil} for no function). It is called just like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700 the functions in @code{before-change-functions}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 @defvar after-change-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704 This obsolete variable holds one function to call after any buffer modification
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 (or @code{nil} for no function). It is called just like the functions in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706 @code{after-change-functions}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 @end defvar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 @defvar first-change-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 This variable is a normal hook that is run whenever a buffer is changed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 that was previously in the unmodified state.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 @end defvar
377
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2713
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2714 @node Transformations
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2715 @section Textual transformations---MD5 and base64 support
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2716 @cindex MD5 digests
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2717 @cindex base64
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2718
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2719 Some textual operations inherently require examining each character in
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2720 turn, and performing arithmetic operations on them. Such operations
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2721 can, of course, be implemented in Emacs Lisp, but tend to be very slow
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2722 for large portions of text or data. This is why some of them are
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2723 implemented in C, with an appropriate interface for Lisp programmers.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2724 Examples of algorithms thus provided are MD5 and base64 support.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2725
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2726 MD5 is an algorithm for calculating message digests, as described in
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2727 rfc1321. Given a message of arbitrary length, MD5 produces an 128-bit
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2728 ``fingerprint'' (``message digest'') corresponding to that message. It
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2729 is considered computationally infeasible to produce two messages having
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2730 the same MD5 digest, or to produce a message having a prespecified
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2731 target digest. MD5 is used heavily by various authentication schemes.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2732
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2733 Emacs Lisp interface to MD5 consists of a single function @code{md5}:
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2734
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2735 @defun md5 object &optional start end
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2736 This function returns the MD5 message digest of @var{object}, a buffer
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2737 or string.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2738
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2739 Optional arguments @var{start} and @var{end} denote positions for
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2740 computing the digest of a portion of @var{object}.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2741
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2742 Some examples of usage:
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2743
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2744 @example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2745 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2746 ;; @r{Calculate the digest of the entire buffer}
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2747 (md5 (current-buffer))
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2748 @result{} "8842b04362899b1cda8d2d126dc11712"
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2749 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2750
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2751 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2752 ;; @r{Calculate the digest of the current line}
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2753 (md5 (current-buffer) (point-at-bol) (point-at-eol))
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2754 @result{} "60614d21e9dee27dfdb01fa4e30d6d00"
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2755 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2756
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2757 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2758 ;; @r{Calculate the digest of your name and email address}
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2759 (md5 (concat (format "%s <%s>" (user-full-name) user-mail-address)))
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2760 @result{} "0a2188c40fd38922d941fe6032fce516"
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2761 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2762 @end example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2763 @end defun
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2764
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2765 Base64 is a portable encoding for arbitrary sequences of octets, in a
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2766 form that need not be readable by humans. It uses a 65-character subset
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2767 of US-ASCII, as described in rfc2045. Base64 is used by MIME to encode
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2768 binary bodies, and to encode binary characters in message headers.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2769
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2770 The Lisp interface to base64 consists of four functions:
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2771
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2772 @defun base64-encode-region beg end &optional no-line-break
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2773 This function encodes the region between @var{beg} and @var{end} of the
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2774 current buffer to base64 format. This means that the original region is
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2775 deleted, and replaced with its base64 equivalent.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2776
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2777 Normally, encoded base64 output is multi-line, with 76-character lines.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2778 If @var{no-line-break} is non-@code{nil}, newlines will not be inserted,
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2779 resulting in single-line output.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2780
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2781 Mule note: you should make sure that you convert the multibyte
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2782 characters (those that do not fit into 0--255 range) to something else,
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2783 because they cannot be meaningfully converted to base64. If the
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2784 @code{base64-encode-region} encounters such characters, it will signal
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2785 an error.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2786
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2787 @code{base64-encode-region} returns the length of the encoded text.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2788
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2789 @example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2790 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2791 ;; @r{Encode the whole buffer in base64}
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2792 (base64-encode-region (point-min) (point-max))
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2793 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2794 @end example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2795
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2796 The function can also be used interactively, in which case it works on
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2797 the currently active region.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2798 @end defun
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2799
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2800 @defun base64-encode-string string
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2801 This function encodes @var{string} to base64, and returns the encoded
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2802 string.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2803
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2804 For Mule, the same considerations apply as for
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2805 @code{base64-encode-region}.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2806
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2807 @example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2808 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2809 (base64-encode-string "fubar")
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2810 @result{} "ZnViYXI="
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2811 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2812 @end example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2813 @end defun
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2814
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2815 @defun base64-decode-region beg end
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2816 This function decodes the region between @var{beg} and @var{end} of the
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2817 current buffer. The region should be in base64 encoding.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2818
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2819 If the region was decoded correctly, @code{base64-decode-region} returns
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2820 the length of the decoded region. If the decoding failed, @code{nil} is
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2821 returned.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2822
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2823 @example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2824 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2825 ;; @r{Decode a base64 buffer, and replace it with the decoded version}
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2826 (base64-decode-region (point-min) (point-max))
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2827 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2828 @end example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2829 @end defun
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2830
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2831 @defun base64-decode-string string
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2832 This function decodes @var{string} to base64, and returns the decoded
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2833 string. @var{string} should be valid base64-encoded text.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2834
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2835 If encoding was not possible, @code{nil} is returned.
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2836
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2837 @example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2838 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2839 (base64-decode-string "ZnViYXI=")
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2840 @result{} "fubar"
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2841 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2842
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2843 @group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2844 (base64-decode-string "totally bogus")
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2845 @result{} nil
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2846 @end group
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2847 @end example
d883f39b8495 Import from CVS: tag r21-2b4
cvs
parents: 290
diff changeset
2848 @end defun