diff options
| author | Gerd Moellmann | 2000-03-26 19:33:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-26 19:33:04 +0000 |
| commit | 3d4ff2dd8dc1d75ccabc1408b4628f702fa1ad7a (patch) | |
| tree | 5d9d4f406a5101833cf248afb9a1d6bf3eea8a27 | |
| parent | 9191c8ae4e0d51452699f2a508a3f217c2708b1d (diff) | |
| download | emacs-3d4ff2dd8dc1d75ccabc1408b4628f702fa1ad7a.tar.gz emacs-3d4ff2dd8dc1d75ccabc1408b4628f702fa1ad7a.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 7 | ||||
| -rw-r--r-- | src/ChangeLog | 6 |
2 files changed, 12 insertions, 1 deletions
| @@ -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 |
| 1125 | the given property to obtain a a string if it doesn't refer to etc/DOC | 1125 | the given property to obtain a a string if it doesn't refer to etc/DOC |
| 1126 | and isn't a string. | 1126 | and isn't a string. |
| 1127 | 1127 | ||
| 1128 | ** If called for a symbol, the function `documentation' now looks for | ||
| 1129 | a `function-documentation' property of that symbol. If it has a non-nil | ||
| 1130 | value, the documentation is taken from that value. If the value is | ||
| 1131 | not 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 @@ | |||
| 1 | 2000-03-26 Gerd Moellmann <gerd@gnu.org> | 1 | 2000-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. |