aboutsummaryrefslogtreecommitdiffstats
path: root/src/xdisp.c
diff options
context:
space:
mode:
authorVibhav Pant2020-08-21 14:04:35 +0530
committerVibhav Pant2020-08-21 14:04:35 +0530
commitf0f8d7b82492e741950c363a03b886965c91b1b0 (patch)
tree19b716830b1ebabc0d7d75949c4e6800c0f104ad /src/xdisp.c
parent9e64a087c4d167e7ec1c4e22bea3e6af53b563de (diff)
parentc818c29771d3cb51875643b2f6c894073e429dd2 (diff)
downloademacs-feature/native-comp-macos-fixes.tar.gz
emacs-feature/native-comp-macos-fixes.zip
Merge branch 'feature/native-comp' into feature/native-comp-macos-fixesfeature/native-comp-macos-fixes
Diffstat (limited to 'src/xdisp.c')
-rw-r--r--src/xdisp.c8
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 }