aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS7
-rw-r--r--src/ChangeLog6
2 files changed, 12 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 2d5a12a8828..fcbb9e859e7 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1121,10 +1121,15 @@ INTEGER optionally contains a sign.
1121 #25rah 1121 #25rah
1122 => 267 1122 => 267
1123 1123
1124** The function documentation-property now evaluates the value of 1124** The function `documentation-property' now evaluates the value of
1125the given property to obtain a a string if it doesn't refer to etc/DOC 1125the given property to obtain a a string if it doesn't refer to etc/DOC
1126and isn't a string. 1126and isn't a string.
1127 1127
1128** If called for a symbol, the function `documentation' now looks for
1129a `function-documentation' property of that symbol. If it has a non-nil
1130value, the documentation is taken from that value. If the value is
1131not a string, it is evaluated to obtain a string.
1132
1128+++ 1133+++
1129** The last argument of `define-key-after' defaults to t for convenience. 1134** The last argument of `define-key-after' defaults to t for convenience.
1130 1135
diff --git a/src/ChangeLog b/src/ChangeLog
index 10948007c83..e95a87b3434 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12000-03-26 Gerd Moellmann <gerd@gnu.org> 12000-03-26 Gerd Moellmann <gerd@gnu.org>
2 2
3 * doc.c (Qfunction_documentation): New variable.
4 (syms_of_doc): Initialize Qfunction_documentation.
5 (Fdocumentation): If FUNCTION is a symbol with non-nil
6 `function-documentation' property, return a documentation derived
7 from that.
8
3 * buffer.c (syms_of_buffer): Add default-cursor-type. 9 * buffer.c (syms_of_buffer): Add default-cursor-type.
4 (init_buffer_once): Don't let cursor_type have a local value 10 (init_buffer_once): Don't let cursor_type have a local value
5 in every buffer. 11 in every buffer.