mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-27 07:30:59 -08:00
(DISP_CHAR_VECTOR): Allow bare 8-bit in display-table.
This commit is contained in:
parent
ca38bbb2b8
commit
3046d6fcf7
1 changed files with 2 additions and 1 deletions
|
|
@ -33,7 +33,8 @@ Boston, MA 02111-1307, USA. */
|
|||
#define DISP_INVIS_VECTOR(dp) ((dp)->extras[4])
|
||||
#define DISP_BORDER_GLYPH(dp) ((dp)->extras[5])
|
||||
|
||||
#define DISP_CHAR_VECTOR(dp, c) ((c) < 0x80 ? (dp)->contents[c] : Qnil)
|
||||
#define DISP_CHAR_VECTOR(dp, c) \
|
||||
(SINGLE_BYTE_CHAR_P(c) ? (dp)->contents[c] : Qnil)
|
||||
|
||||
/* Defined in window.c. */
|
||||
extern struct Lisp_Char_Table *window_display_table ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue