A glyph table is basically an array that has 256 elements; each element represents one character and contains between zero and four glyphs -- the glyphs which will be printed for the character.
A special case exists for the tab character; when an element in the table contains zero glyphs, enough spaces will be printed to fill in to the next tab stop.
(get-glyph (default-glyph-table) ?a)
=> "a"
(get-glyph (default-glyph-table) ?\t)
=> "" ;TAB is special
(get-glyph (default-glyph-table) ?\000)
=> "^@" ;the NUL character
An error is signalled if there are more than four characters in glyph-string.
All buffers which use glyph-table for their rendering will be totally redrawn at the next redisplay.
Go to the first, previous, next, last section, table of contents.