From: Eli Zaretskii Date: Wed, 22 Jan 2020 17:17:32 +0000 (+0200) Subject: Fix a few typos X-Git-Tag: emacs-27.0.90~112 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=196c42b8bf;p=emacs.git Fix a few typos * etc/NEWS: Fix a typo. * src/xdisp.c (try_window_reusing_current_matrix, try_window_id): * src/dispnew.c (scrolling_window): Fix typos in comments. --- diff --git a/etc/NEWS b/etc/NEWS index 9c74c84f456..792851e5af5 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -38,7 +38,7 @@ HarfBuzz text shaping engine. It is on by default; use './configure --without-harfbuzz' to build without it. The HarfBuzz text shaping is available via new font backend drivers 'xfthb' and 'ftcrhb' for Xft and Cairo drawings, respectively, and via the 'harfbuzz' backend on -MS-Windows. The Harfbuzz text shaping is preferred to the previously +MS-Windows. The HarfBuzz text shaping is preferred to the previously supported ones, so the font backends that use older shaping engines (FLT on GNU and Unix systems and Uniscribe on MS-Windows) are not enabled by default; they can be enabled via the 'font-backend' frame diff --git a/src/dispnew.c b/src/dispnew.c index d094ca61798..d79ae836c56 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -4361,7 +4361,7 @@ scrolling_window (struct window *w, int tab_line_p) /* Can't scroll the display of w32 GUI frames when position of point is indicated by the system caret, because scrolling the display - will then "copy" the pixles used by the caret. */ + will then "copy" the pixels used by the caret. */ #ifdef HAVE_NTGUI if (w32_use_visible_system_caret) return 0; diff --git a/src/xdisp.c b/src/xdisp.c index 6d4c4d3dcf7..3a8b5e3f1d0 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -19193,7 +19193,7 @@ try_window_reusing_current_matrix (struct window *w) /* Can't scroll the display of w32 GUI frames when position of point is indicated by the system caret, because scrolling the display - will then "copy" the pixles used by the caret. */ + will then "copy" the pixels used by the caret. */ #ifdef HAVE_NTGUI if (w32_use_visible_system_caret) return false; @@ -20185,7 +20185,7 @@ try_window_id (struct window *w) /* Can't let scroll_run_hook below run on w32 GUI frames when position of point is indicated by the system caret, because - scrolling the display will then "copy" the pixles used by the + scrolling the display will then "copy" the pixels used by the caret. */ #ifdef HAVE_NTGUI if (FRAME_W32_P (f) && w32_use_visible_system_caret)