comparison src/buffer.c @ 2645:b0462d46afff

* buffer.c (syms_of_buffer): Doc fix for buffer-display-table. * buffer.c (Fmake_overlay, Fmove_overlay): New optional BUFFER arguments. (recenter_overlay_lists): New argument BUF, to use instead of the current buffer. (Foverlay_recenter): Pass the appropriate arguments to recenter_overlay_lists. * buffer.c (Fdelete_overlay): Don't assume that overlay is in the current buffer. Don't forget to declare the argument a Lisp_Object.
author Jim Blandy <jimb@redhat.com>
date Tue, 04 May 1993 02:23:12 +0000
parents f694fc6cdd33
children 16db9d1af886
comparison
equal deleted inserted replaced
2644:6d563cf5a260 2645:b0462d46afff
2055 Qnil, 2055 Qnil,
2056 "Display table that controls display of the contents of current buffer.\n\ 2056 "Display table that controls display of the contents of current buffer.\n\
2057 Automatically becomes buffer-local when set in any fashion.\n\ 2057 Automatically becomes buffer-local when set in any fashion.\n\
2058 The display table is a vector created with `make-display-table'.\n\ 2058 The display table is a vector created with `make-display-table'.\n\
2059 The first 256 elements control how to display each possible text character.\n\ 2059 The first 256 elements control how to display each possible text character.\n\
2060 The value should be a \"rope\" (see `make-rope') or nil;\n\ 2060 Each value should be a vector of characters or nil;\n\
2061 nil means display the character in the default fashion.\n\ 2061 nil means display the character in the default fashion.\n\
2062 The remaining five elements are ropes that control the display of\n\ 2062 The remaining five elements control the display of\n\
2063 the end of a truncated screen line (element 256);\n\ 2063 the end of a truncated screen line (element 256, a single character);\n\
2064 the end of a continued line (element 257);\n\ 2064 the end of a continued line (element 257, a single character);\n\
2065 the escape character used to display character codes in octal (element 258);\n\ 2065 the escape character used to display character codes in octal\n\
2066 the character used as an arrow for control characters (element 259);\n\ 2066 (element 258, a single character);\n\
2067 the decoration indicating the presence of invisible lines (element 260).\n\ 2067 the character used as an arrow for control characters (element 259,\n\
2068 a single character);\n\
2069 the decoration indicating the presence of invisible lines (element 260,\n\
2070 a vector of characters).\n\
2068 If this variable is nil, the value of `standard-display-table' is used.\n\ 2071 If this variable is nil, the value of `standard-display-table' is used.\n\
2069 Each window can have its own, overriding display table."); 2072 Each window can have its own, overriding display table.");
2070 2073
2071 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol, 2074 /*DEFVAR_LISP ("debug-check-symbol", &Vcheck_symbol,
2072 "Don't ask."); 2075 "Don't ask.");