diff options
| author | Eli Zaretskii | 2026-03-26 19:13:15 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2026-03-26 19:13:15 +0200 |
| commit | 887a7ec32d976e673a802e211b28a8c1b397b950 (patch) | |
| tree | d6683933a9bdc09ca0c6b626b2e36c3bfaabc6d5 /src | |
| parent | d78000728351986b0083013728dc3ef366112c0b (diff) | |
| download | emacs-887a7ec32d976e673a802e211b28a8c1b397b950.tar.gz emacs-887a7ec32d976e673a802e211b28a8c1b397b950.zip | |
; * src/xdisp.c (produce_special_glyphs): Fix commentary.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 179c1bae72b..4f2c5c39900 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -32855,7 +32855,7 @@ produce_special_glyphs (struct it *it, enum display_element_type what, | |||
| 32855 | { | 32855 | { |
| 32856 | c = XFIXNUM (val); | 32856 | c = XFIXNUM (val); |
| 32857 | 32857 | ||
| 32858 | /* If something goes wrong defaults to '/'. */ | 32858 | /* If something goes wrong, fall back to '/'. */ |
| 32859 | if (CHAR_VALID_P (c)) | 32859 | if (CHAR_VALID_P (c)) |
| 32860 | SET_GLYPH (glyph, c, face_id); | 32860 | SET_GLYPH (glyph, c, face_id); |
| 32861 | else | 32861 | else |
| @@ -32916,7 +32916,7 @@ produce_special_glyphs (struct it *it, enum display_element_type what, | |||
| 32916 | { | 32916 | { |
| 32917 | c = XFIXNUM (val); | 32917 | c = XFIXNUM (val); |
| 32918 | 32918 | ||
| 32919 | /* If something goes wrong defaults to '$'. */ | 32919 | /* If something goes wrong, fall back to '$'. */ |
| 32920 | if (CHAR_VALID_P (c)) | 32920 | if (CHAR_VALID_P (c)) |
| 32921 | SET_GLYPH (glyph, c, face_id); | 32921 | SET_GLYPH (glyph, c, face_id); |
| 32922 | else | 32922 | else |