diff options
| -rw-r--r-- | lispref/ChangeLog | 32 | ||||
| -rw-r--r-- | lispref/text.texi | 15 |
2 files changed, 40 insertions, 7 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 9cb76017e39..847860f5c35 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2005-03-17 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * searching.texi (String Search, Regexp Search, Regexp Search): | ||
| 4 | Cleanups. | ||
| 5 | |||
| 6 | * nonascii.texi (Character Codes): Minor fix. | ||
| 7 | |||
| 8 | * display.texi (Display Property): Explain the significance | ||
| 9 | of having text properties that are eq. | ||
| 10 | (Other Display Specs): Explain string as display spec. | ||
| 11 | |||
| 12 | * commands.texi (Interactive Codes): Document G option. | ||
| 13 | |||
| 14 | 2005-03-17 Chong Yidong <cyd@stupidchicken.com> | ||
| 15 | |||
| 16 | * text.texi (Filling): Add sentence-end-without-period and | ||
| 17 | sentence-end-without-space. | ||
| 18 | (Changing Properties): Minor fix. | ||
| 19 | |||
| 20 | * anti.texi: Total rewrite. | ||
| 21 | |||
| 1 | 2005-03-15 Lute Kamstra <lute@gnu.org> | 22 | 2005-03-15 Lute Kamstra <lute@gnu.org> |
| 2 | 23 | ||
| 3 | * edebug.texi (Instrumenting Macro Calls): Fix typos. | 24 | * edebug.texi (Instrumenting Macro Calls): Fix typos. |
| @@ -42,11 +63,6 @@ | |||
| 42 | and calendar-today-marker are strings, not chars. | 63 | and calendar-today-marker are strings, not chars. |
| 43 | (Holiday Customizing): Minor fix. | 64 | (Holiday Customizing): Minor fix. |
| 44 | 65 | ||
| 45 | * nonascii.texi (Text Representations): Clarify position-bytes. | ||
| 46 | (Character Sets): Add list-charset-chars. | ||
| 47 | (Scanning Charsets): Add charset-after. | ||
| 48 | (Encoding and I/O): Minor fix. | ||
| 49 | |||
| 50 | * internals.texi (Writing Emacs Primitives): Update `or' example. | 66 | * internals.texi (Writing Emacs Primitives): Update `or' example. |
| 51 | Update limit on # args of subr. | 67 | Update limit on # args of subr. |
| 52 | 68 | ||
| @@ -59,6 +75,12 @@ | |||
| 59 | (Variable Definitions, Group Definitions): Not here. | 75 | (Variable Definitions, Group Definitions): Not here. |
| 60 | (Variable Definitions): Clarify symbol arg to :initialize and :set fns. | 76 | (Variable Definitions): Clarify symbol arg to :initialize and :set fns. |
| 61 | 77 | ||
| 78 | 2005-03-07 Chong Yidong <cyd@stupidchicken.com> | ||
| 79 | * nonascii.texi (Text Representations): Clarify position-bytes. | ||
| 80 | (Character Sets): Add list-charset-chars. | ||
| 81 | (Scanning Charsets): Add charset-after. | ||
| 82 | (Encoding and I/O): Minor fix. | ||
| 83 | |||
| 62 | 2005-03-06 Richard M. Stallman <rms@gnu.org> | 84 | 2005-03-06 Richard M. Stallman <rms@gnu.org> |
| 63 | 85 | ||
| 64 | * windows.texi (Vertical Scrolling): Get rid of "Emacs 21". | 86 | * windows.texi (Vertical Scrolling): Get rid of "Emacs 21". |
diff --git a/lispref/text.texi b/lispref/text.texi index cd63a756add..6934a976396 100644 --- a/lispref/text.texi +++ b/lispref/text.texi | |||
| @@ -1480,6 +1480,17 @@ does not count as the end of a sentence, and the filling functions | |||
| 1480 | avoid breaking the line at such a place. | 1480 | avoid breaking the line at such a place. |
| 1481 | @end defopt | 1481 | @end defopt |
| 1482 | 1482 | ||
| 1483 | @defopt sentence-end-without-period | ||
| 1484 | If this variable is non-@code{nil}, a sentence can end without a | ||
| 1485 | period. This is used for languages like Thai, where sentences end | ||
| 1486 | with a double space but without a period. | ||
| 1487 | @end defopt | ||
| 1488 | |||
| 1489 | @defopt sentence-end-without-space | ||
| 1490 | If this variable is non-@code{nil}, it should be a string of | ||
| 1491 | characters that can end a sentence without following spaces. | ||
| 1492 | @end defopt | ||
| 1493 | |||
| 1483 | @defvar fill-paragraph-function | 1494 | @defvar fill-paragraph-function |
| 1484 | This variable provides a way for major modes to override the filling of | 1495 | This variable provides a way for major modes to override the filling of |
| 1485 | paragraphs. If the value is non-@code{nil}, @code{fill-paragraph} calls | 1496 | paragraphs. If the value is non-@code{nil}, @code{fill-paragraph} calls |
| @@ -2619,9 +2630,9 @@ list. | |||
| 2619 | @end defun | 2630 | @end defun |
| 2620 | 2631 | ||
| 2621 | @defun remove-list-of-text-properties start end list-of-properties &optional object | 2632 | @defun remove-list-of-text-properties start end list-of-properties &optional object |
| 2622 | Like @code{remove-list-properties} except that | 2633 | Like @code{remove-text-properties} except that |
| 2623 | @var{list-of-properties} is a list property names only, not an | 2634 | @var{list-of-properties} is a list property names only, not an |
| 2624 | alternating list of property values. | 2635 | alternating list of property names and values. |
| 2625 | @end defun | 2636 | @end defun |
| 2626 | 2637 | ||
| 2627 | @defun set-text-properties start end props &optional object | 2638 | @defun set-text-properties start end props &optional object |