diff options
Diffstat (limited to 'src/xwidget.c')
-rw-r--r-- | src/xwidget.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xwidget.c b/src/xwidget.c index 91a92c0ca4c..9450bdf7870 100644 --- a/src/xwidget.c +++ b/src/xwidget.c @@ -393,7 +393,7 @@ webkit_mime_type_policy_typedecision_requested_cb { /* This function makes webkit send a download signal for all unknown mime types. TODO: Defer the decision to Lisp, so that it's - possible to make Emacs handle teext mime for instance.xs. */ + possible to make Emacs handle mime text for instance. */ if (!webkit_web_view_can_show_mime_type (webView, mimetype)) { webkit_web_policy_decision_download (policy_decision); @@ -594,7 +594,7 @@ x_draw_xwidget_glyph_string (struct glyph_string *s) WINDOW_BOTTOM_EDGE_Y (s->w) - WINDOW_MODE_LINE_HEIGHT (s->w) - y); clip_top = max (0, WINDOW_TOP_EDGE_Y (s->w) - y); - /* We are conserned with movement of the onscreen area. The area + /* We are concerned with movement of the onscreen area. The area might sit still when the widget actually moves. This happens when an Emacs window border moves across a widget window. So, if any corner of the outer widget clipping window moves, that counts @@ -615,7 +615,7 @@ x_draw_xwidget_glyph_string (struct glyph_string *s) /* Clip the widget window if some parts happen to be outside drawable area. An Emacs window is not a gtk window. A gtk window covers the entire frame. Clipping might have changed even if we - havent actualy moved, we try figure out when we need to reclip + haven't actually moved; try to figure out when we need to reclip for real. */ if (xv->clip_right != clip_right || xv->clip_bottom != clip_bottom @@ -1132,7 +1132,7 @@ xwidget_end_redisplay (struct window *w, struct glyph_matrix *matrix) not in the desired matrix. This only takes care of xwidgets in active windows. If a window - goes away from screen xwidget views wust be deleted. + goes away from the screen, xwidget views must be deleted. dump_glyph_matrix (matrix, 2); */ for (i = 0; i < matrix->nrows; ++i) |