aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2026-03-26 19:13:15 +0200
committerEli Zaretskii2026-03-26 19:13:15 +0200
commit887a7ec32d976e673a802e211b28a8c1b397b950 (patch)
treed6683933a9bdc09ca0c6b626b2e36c3bfaabc6d5 /src
parentd78000728351986b0083013728dc3ef366112c0b (diff)
downloademacs-887a7ec32d976e673a802e211b28a8c1b397b950.tar.gz
emacs-887a7ec32d976e673a802e211b28a8c1b397b950.zip
; * src/xdisp.c (produce_special_glyphs): Fix commentary.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
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