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