diff options
| author | Xue Fuqiao | 2013-11-05 17:00:52 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-11-05 17:00:52 +0800 |
| commit | 29aa2b718c072c78d0fda78ae40b0a0d2e32bdbd (patch) | |
| tree | 7b8ab33c783a1983cfe9f0cd6927d3ee721f4680 /src | |
| parent | da6a8debb270a2e602f3b789ec3e27e815041164 (diff) | |
| download | emacs-29aa2b718c072c78d0fda78ae40b0a0d2e32bdbd.tar.gz emacs-29aa2b718c072c78d0fda78ae40b0a0d2e32bdbd.zip | |
Doc fix.
* doc/lispref/display.texi (Glyphs): Add an index for glyph code.
* src/xdisp.c (syms_of_xdisp): Mention the active display table in doc
string of glyphless-char-display.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xdisp.c | 6 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 227b86a4cab..556025fa5bd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-11-05 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * xdisp.c (syms_of_xdisp): Mention the active display table in doc | ||
| 4 | string of glyphless-char-display. | ||
| 5 | |||
| 1 | 2013-11-05 Jan Djärv <jan.h.d@swipnet.se> | 6 | 2013-11-05 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 7 | ||
| 3 | * nsfns.m (ns_get_name_from_ioreg): New function. | 8 | * nsfns.m (ns_get_name_from_ioreg): New function. |
diff --git a/src/xdisp.c b/src/xdisp.c index 382f9e7a8e1..a9dd387729e 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -29723,7 +29723,11 @@ GRAPHICAL and TEXT should each have one of the values listed above. | |||
| 29723 | The char-table has one extra slot to control the display of a character for | 29723 | The char-table has one extra slot to control the display of a character for |
| 29724 | which no font is found. This slot only takes effect on graphical terminals. | 29724 | which no font is found. This slot only takes effect on graphical terminals. |
| 29725 | Its value should be an ASCII acronym string, `hex-code', `empty-box', or | 29725 | Its value should be an ASCII acronym string, `hex-code', `empty-box', or |
| 29726 | `thin-space'. The default is `empty-box'. */); | 29726 | `thin-space'. The default is `empty-box'. |
| 29727 | |||
| 29728 | If a character has a non-nil entry in an active display table, the | ||
| 29729 | display table takes effect; in this case, Emacs does not consult | ||
| 29730 | `glyphless-char-display' at all. */); | ||
| 29727 | Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil); | 29731 | Vglyphless_char_display = Fmake_char_table (Qglyphless_char_display, Qnil); |
| 29728 | Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0), | 29732 | Fset_char_table_extra_slot (Vglyphless_char_display, make_number (0), |
| 29729 | Qempty_box); | 29733 | Qempty_box); |