# HG changeset patch # User Erik Naggum # Date 813271963 0 # Node ID d72f18f068a858aa625014d75e1d567332fdbfe7 # Parent aa2fb1aa0c943d2d9f56f9104ae8965eb935c053 (buffer-display-table): Document new implementation. diff -r aa2fb1aa0c94 -r d72f18f068a8 src/buffer.c --- a/src/buffer.c Mon Oct 09 19:44:26 1995 +0000 +++ b/src/buffer.c Mon Oct 09 20:52:43 1995 +0000 @@ -3721,21 +3721,22 @@ Qnil, "Display table that controls display of the contents of current buffer.\n\ Automatically becomes buffer-local when set in any fashion.\n\ -The display table is a vector created with `make-display-table'.\n\ -The first 256 elements control how to display each possible text character.\n\ -Each value should be a vector of characters or nil;\n\ +The display table is a char-table created with `make-display-table'.\n\ +The ordinary char-table elements control how to display each possible text\n\ +character. Each value should be a vector of characters or nil;\n\ nil means display the character in the default fashion.\n\ -The remaining six elements control the display of\n\ - the end of a truncated screen line (element 256, a single character);\n\ - the end of a continued line (element 257, a single character);\n\ +There are six extra slots to control the display of\n\ + the end of a truncated screen line (extra-slot 0, a single character);\n\ + the end of a continued line (extra-slot 1, a single character);\n\ the escape character used to display character codes in octal\n\ - (element 258, a single character);\n\ - the character used as an arrow for control characters (element 259,\n\ + (extra-slot 2, a single character);\n\ + the character used as an arrow for control characters (extra-slot 3,\n\ a single character);\n\ - the decoration indicating the presence of invisible lines (element 260,\n\ + the decoration indicating the presence of invisible lines (extra-slot 4,\n\ a vector of characters);\n\ the character used to draw the border between side-by-side windows\n\ - (element 261, a single character).\n\ + (extra-slot 5, a single character).\n\ +See also the functions `display-table-slot' and `set-display-table-slot'.\n\ If this variable is nil, the value of `standard-display-table' is used.\n\ Each window can have its own, overriding display table."); #endif