diff options
| author | Xue Fuqiao | 2013-10-15 20:47:57 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-10-15 20:47:57 +0800 |
| commit | 57f623e268a3d765676d0d30e9c9065a3a9d8dc1 (patch) | |
| tree | 9c7a3e886a0abc715077d6b99cba0d238172a6cc /src | |
| parent | 2641f1a547735f506a3d8039053d457a1da5e5ea (diff) | |
| download | emacs-57f623e268a3d765676d0d30e9c9065a3a9d8dc1.tar.gz emacs-57f623e268a3d765676d0d30e9c9065a3a9d8dc1.zip | |
Add usage note of buffer-invisibility-spec.
* src/buffer.c (syms_of_buffer) <buffer-invisibility-spec>: Add usage
note from the lispref.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/buffer.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9f57429aa00..025ddfa3425 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-10-15 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * buffer.c (syms_of_buffer) <buffer-invisibility-spec>: Add usage | ||
| 4 | note from the lispref. | ||
| 5 | |||
| 1 | 2013-10-15 Dmitry Antipov <dmantipov@yandex.ru> | 6 | 2013-10-15 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 7 | ||
| 3 | * nsterm.h (struct ns_display_info): Remove set-but-unused | 8 | * nsterm.h (struct ns_display_info): Remove set-but-unused |
diff --git a/src/buffer.c b/src/buffer.c index 1570f3831ac..ef04ca7018d 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6190,7 +6190,9 @@ If the value is a list, a text character is invisible if its `invisible' | |||
| 6190 | property is an element in that list (or is a list with members in common). | 6190 | property is an element in that list (or is a list with members in common). |
| 6191 | If an element is a cons cell of the form (PROP . ELLIPSIS), | 6191 | If an element is a cons cell of the form (PROP . ELLIPSIS), |
| 6192 | then characters with property value PROP are invisible, | 6192 | then characters with property value PROP are invisible, |
| 6193 | and they have an ellipsis as well if ELLIPSIS is non-nil. */); | 6193 | and they have an ellipsis as well if ELLIPSIS is non-nil. |
| 6194 | Setting this variable is very fast, much faster than scanning all the | ||
| 6195 | text in the buffer looking for properties to change. */); | ||
| 6194 | 6196 | ||
| 6195 | DEFVAR_PER_BUFFER ("buffer-display-count", | 6197 | DEFVAR_PER_BUFFER ("buffer-display-count", |
| 6196 | &BVAR (current_buffer, display_count), Qintegerp, | 6198 | &BVAR (current_buffer, display_count), Qintegerp, |