aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Third2017-04-19 17:58:49 +0100
committerAlan Third2017-04-19 17:58:49 +0100
commit21fa90b0488b2344b9b93ccc77263968d1b903b7 (patch)
treea27e87dfafcd30655be2b0cf24a3a606200f0df7 /src
parentaca21d42d3c1327ddc202a03585416f2821e6839 (diff)
downloademacs-21fa90b0488b2344b9b93ccc77263968d1b903b7.tar.gz
emacs-21fa90b0488b2344b9b93ccc77263968d1b903b7.zip
Fix bug introduced by my last commit
* src/nsterm.m (ns_draw_fringe_bitmap): Revert key-mashing accident.
Diffstat (limited to 'src')
-rw-r--r--src/nsterm.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nsterm.m b/src/nsterm.m
index fbbcdbe4bc2..c53957f9338 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -2822,7 +2822,7 @@ ns_draw_fringe_bitmap (struct window *w, struct glyph_row *row,
2822 2822
2823 for (i = 0; i < full_height; i++) 2823 for (i = 0; i < full_height; i++)
2824 cbits[i] = bits[i]; 2824 cbits[i] = bits[i];
2825 img = [[EmacsImage alloc] XBM: cbits width: 8 2825 img = [[EmacsImage alloc] initFromXBM: cbits width: 8
2826 height: full_height 2826 height: full_height
2827 fg: 0 bg: 0]; 2827 fg: 0 bg: 0];
2828 bimgs[p->which - 1] = img; 2828 bimgs[p->which - 1] = img;