# HG changeset patch # User Erik Naggum # Date 817955461 0 # Node ID d628bf92f672c9b91ab131cea7c35e687b808d4e # Parent 108ac303b3e5d6da59dffc6dbd85febdf0a3e466 (display-table-slot,set-display-table-slot): Document the slot names. diff -r 108ac303b3e5 -r d628bf92f672 lisp/disp-table.el --- a/lisp/disp-table.el Fri Dec 01 20:18:18 1995 +0000 +++ b/lisp/disp-table.el Sun Dec 03 01:51:01 1995 +0000 @@ -47,7 +47,9 @@ ;;;###autoload (defun display-table-slot (display-table slot) "Return the value of the extra slot in DISPLAY-TABLE named SLOT. -SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol)." +SLOT may be a number from 0 to 5 inclusive, or a slot name (symbol). +Valid symbols are `truncation', `wrap', `escape', `control', +`selective-display', and `vertical-border'." (let ((slot-number (if (numberp slot) slot (or (get slot 'display-table-slot) @@ -58,7 +60,8 @@ (defun set-display-table-slot (display-table slot value) "Set the value of the extra slot in DISPLAY-TABLE named SLOT to VALUE. SLOT may be a number from 0 to 5 inclusive, or a name (symbol). -See `display-table-slot-name-alist' for the names and numbers." +Valid symbols are `truncation', `wrap', `escape', `control', +`selective-display', and `vertical-border'." (let ((slot-number (if (numberp slot) slot (or (get slot 'display-table-slot)