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