aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-03-17 23:30:49 +0000
committerRichard M. Stallman2005-03-17 23:30:49 +0000
commitd69ea7ab79eaad4fa769670b63d6af9dd3a8ca44 (patch)
tree8681e5c756b7a7999b969ac4611d7fd3ff420fe9
parent5bb8ca2a9004185ac6dabfbbd8988aef42502812 (diff)
downloademacs-d69ea7ab79eaad4fa769670b63d6af9dd3a8ca44.tar.gz
emacs-d69ea7ab79eaad4fa769670b63d6af9dd3a8ca44.zip
(Filling): Add sentence-end-without-period and sentence-end-without-space.
(Changing Properties): Minor fix.
-rw-r--r--lispref/ChangeLog32
-rw-r--r--lispref/text.texi15
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 @@
12005-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
142005-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
12005-03-15 Lute Kamstra <lute@gnu.org> 222005-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
782005-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
622005-03-06 Richard M. Stallman <rms@gnu.org> 842005-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
1480avoid breaking the line at such a place. 1480avoid breaking the line at such a place.
1481@end defopt 1481@end defopt
1482 1482
1483@defopt sentence-end-without-period
1484If this variable is non-@code{nil}, a sentence can end without a
1485period. This is used for languages like Thai, where sentences end
1486with a double space but without a period.
1487@end defopt
1488
1489@defopt sentence-end-without-space
1490If this variable is non-@code{nil}, it should be a string of
1491characters that can end a sentence without following spaces.
1492@end defopt
1493
1483@defvar fill-paragraph-function 1494@defvar fill-paragraph-function
1484This variable provides a way for major modes to override the filling of 1495This variable provides a way for major modes to override the filling of
1485paragraphs. If the value is non-@code{nil}, @code{fill-paragraph} calls 1496paragraphs. 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
2622Like @code{remove-list-properties} except that 2633Like @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
2624alternating list of property values. 2635alternating 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