diff options
| author | Erik Naggum | 1995-10-09 20:52:43 +0000 |
|---|---|---|
| committer | Erik Naggum | 1995-10-09 20:52:43 +0000 |
| commit | 6fdc249f09bb93de7201b4f0efc60192ee1914a5 (patch) | |
| tree | e908d876f0a6f0265388dfe47aabb04987cf344b | |
| parent | 5534818bda0751e930798085721488078949e0ad (diff) | |
| download | emacs-6fdc249f09bb93de7201b4f0efc60192ee1914a5.tar.gz emacs-6fdc249f09bb93de7201b4f0efc60192ee1914a5.zip | |
(buffer-display-table): Document new implementation.
| -rw-r--r-- | src/buffer.c | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/src/buffer.c b/src/buffer.c index e4b8130e6e5..f65df3605b7 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -3721,21 +3721,22 @@ Automatically becomes buffer-local when set in any fashion."); | |||
| 3721 | Qnil, | 3721 | Qnil, |
| 3722 | "Display table that controls display of the contents of current buffer.\n\ | 3722 | "Display table that controls display of the contents of current buffer.\n\ |
| 3723 | Automatically becomes buffer-local when set in any fashion.\n\ | 3723 | Automatically becomes buffer-local when set in any fashion.\n\ |
| 3724 | The display table is a vector created with `make-display-table'.\n\ | 3724 | The display table is a char-table created with `make-display-table'.\n\ |
| 3725 | The first 256 elements control how to display each possible text character.\n\ | 3725 | The ordinary char-table elements control how to display each possible text\n\ |
| 3726 | Each value should be a vector of characters or nil;\n\ | 3726 | character. Each value should be a vector of characters or nil;\n\ |
| 3727 | nil means display the character in the default fashion.\n\ | 3727 | nil means display the character in the default fashion.\n\ |
| 3728 | The remaining six elements control the display of\n\ | 3728 | There are six extra slots to control the display of\n\ |
| 3729 | the end of a truncated screen line (element 256, a single character);\n\ | 3729 | the end of a truncated screen line (extra-slot 0, a single character);\n\ |
| 3730 | the end of a continued line (element 257, a single character);\n\ | 3730 | the end of a continued line (extra-slot 1, a single character);\n\ |
| 3731 | the escape character used to display character codes in octal\n\ | 3731 | the escape character used to display character codes in octal\n\ |
| 3732 | (element 258, a single character);\n\ | 3732 | (extra-slot 2, a single character);\n\ |
| 3733 | the character used as an arrow for control characters (element 259,\n\ | 3733 | the character used as an arrow for control characters (extra-slot 3,\n\ |
| 3734 | a single character);\n\ | 3734 | a single character);\n\ |
| 3735 | the decoration indicating the presence of invisible lines (element 260,\n\ | 3735 | the decoration indicating the presence of invisible lines (extra-slot 4,\n\ |
| 3736 | a vector of characters);\n\ | 3736 | a vector of characters);\n\ |
| 3737 | the character used to draw the border between side-by-side windows\n\ | 3737 | the character used to draw the border between side-by-side windows\n\ |
| 3738 | (element 261, a single character).\n\ | 3738 | (extra-slot 5, a single character).\n\ |
| 3739 | See also the functions `display-table-slot' and `set-display-table-slot'.\n\ | ||
| 3739 | If this variable is nil, the value of `standard-display-table' is used.\n\ | 3740 | If this variable is nil, the value of `standard-display-table' is used.\n\ |
| 3740 | Each window can have its own, overriding display table."); | 3741 | Each window can have its own, overriding display table."); |
| 3741 | #endif | 3742 | #endif |