diff options
Diffstat (limited to 'src/xdisp.c')
| -rw-r--r-- | src/xdisp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 4fe1c4288af..ad03ac46054 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -180,8 +180,8 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */ | |||
| 180 | present (non-empty) only if the corresponding display margin is | 180 | present (non-empty) only if the corresponding display margin is |
| 181 | shown in the window. If the glyph array for a marginal area is not | 181 | shown in the window. If the glyph array for a marginal area is not |
| 182 | present its beginning and end coincide, i.e. such arrays are | 182 | present its beginning and end coincide, i.e. such arrays are |
| 183 | actually empty (they contain no glyphs). Frame glyph matrics, used | 183 | actually empty (they contain no glyphs). Frame glyph matrices, used |
| 184 | on text-mode terminals (see below) never have marginal areas, they | 184 | on text-mode terminals (see below) never have marginal areas; they |
| 185 | treat the entire frame-wide row of glyphs as a single large "text | 185 | treat the entire frame-wide row of glyphs as a single large "text |
| 186 | area". | 186 | area". |
| 187 | 187 | ||
| @@ -7555,7 +7555,7 @@ get_next_display_element (struct it *it) | |||
| 7555 | /* Merge `nobreak-space' into the current face. */ | 7555 | /* Merge `nobreak-space' into the current face. */ |
| 7556 | face_id = merge_faces (it->w, Qnobreak_space, 0, | 7556 | face_id = merge_faces (it->w, Qnobreak_space, 0, |
| 7557 | it->face_id); | 7557 | it->face_id); |
| 7558 | XSETINT (it->ctl_chars[0], ' '); | 7558 | XSETINT (it->ctl_chars[0], it->c); |
| 7559 | ctl_len = 1; | 7559 | ctl_len = 1; |
| 7560 | goto display_control; | 7560 | goto display_control; |
| 7561 | } | 7561 | } |
| @@ -7568,7 +7568,7 @@ get_next_display_element (struct it *it) | |||
| 7568 | /* Merge `nobreak-space' into the current face. */ | 7568 | /* Merge `nobreak-space' into the current face. */ |
| 7569 | face_id = merge_faces (it->w, Qnobreak_hyphen, 0, | 7569 | face_id = merge_faces (it->w, Qnobreak_hyphen, 0, |
| 7570 | it->face_id); | 7570 | it->face_id); |
| 7571 | XSETINT (it->ctl_chars[0], '-'); | 7571 | XSETINT (it->ctl_chars[0], it->c); |
| 7572 | ctl_len = 1; | 7572 | ctl_len = 1; |
| 7573 | goto display_control; | 7573 | goto display_control; |
| 7574 | } | 7574 | } |