]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a few typos
authorEli Zaretskii <eliz@gnu.org>
Wed, 22 Jan 2020 17:17:32 +0000 (19:17 +0200)
committerEli Zaretskii <eliz@gnu.org>
Wed, 22 Jan 2020 17:17:32 +0000 (19:17 +0200)
* 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.

etc/NEWS
src/dispnew.c
src/xdisp.c

index 9c74c84f456529f5fce0b269402f2124e1bfd638..792851e5af5aaf149eb5ec7d2ee194546a38c7d2 100644 (file)
--- 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
index d094ca61798408bbba4e43c7d39f7ad3e0ef8aa0..d79ae836c56982fe5cb9ae5737af0c3521bd3521 100644 (file)
@@ -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;
index 6d4c4d3dcf7a339ff0e9df531ecc1a3361b66d83..3a8b5e3f1d03cb12a7709854c4b083f84e96851f 100644 (file)
@@ -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)