aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorErik Naggum1995-10-09 20:52:43 +0000
committerErik Naggum1995-10-09 20:52:43 +0000
commit6fdc249f09bb93de7201b4f0efc60192ee1914a5 (patch)
treee908d876f0a6f0265388dfe47aabb04987cf344b /src/buffer.c
parent5534818bda0751e930798085721488078949e0ad (diff)
downloademacs-6fdc249f09bb93de7201b4f0efc60192ee1914a5.tar.gz
emacs-6fdc249f09bb93de7201b4f0efc60192ee1914a5.zip
(buffer-display-table): Document new implementation.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c21
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\
3723Automatically becomes buffer-local when set in any fashion.\n\ 3723Automatically becomes buffer-local when set in any fashion.\n\
3724The display table is a vector created with `make-display-table'.\n\ 3724The display table is a char-table created with `make-display-table'.\n\
3725The first 256 elements control how to display each possible text character.\n\ 3725The ordinary char-table elements control how to display each possible text\n\
3726Each value should be a vector of characters or nil;\n\ 3726character. Each value should be a vector of characters or nil;\n\
3727nil means display the character in the default fashion.\n\ 3727nil means display the character in the default fashion.\n\
3728The remaining six elements control the display of\n\ 3728There 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\
3739See also the functions `display-table-slot' and `set-display-table-slot'.\n\
3739If this variable is nil, the value of `standard-display-table' is used.\n\ 3740If this variable is nil, the value of `standard-display-table' is used.\n\
3740Each window can have its own, overriding display table."); 3741Each window can have its own, overriding display table.");
3741#endif 3742#endif