aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2020-01-22 19:17:32 +0200
committerEli Zaretskii2020-01-22 19:17:32 +0200
commit196c42b8bf9cc9ce804aab38198391e9bff126e5 (patch)
treedd2e3f8afd6b639711bb2b603b7d07b22145e7f8
parent4f2b96779521bb8311bcd2de06a07efcfb60038f (diff)
downloademacs-196c42b8bf9cc9ce804aab38198391e9bff126e5.tar.gz
emacs-196c42b8bf9cc9ce804aab38198391e9bff126e5.zip
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.
-rw-r--r--etc/NEWS2
-rw-r--r--src/dispnew.c2
-rw-r--r--src/xdisp.c4
3 files changed, 4 insertions, 4 deletions
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
38--without-harfbuzz' to build without it. The HarfBuzz text shaping is 38--without-harfbuzz' to build without it. The HarfBuzz text shaping is
39available via new font backend drivers 'xfthb' and 'ftcrhb' for Xft 39available via new font backend drivers 'xfthb' and 'ftcrhb' for Xft
40and Cairo drawings, respectively, and via the 'harfbuzz' backend on 40and Cairo drawings, respectively, and via the 'harfbuzz' backend on
41MS-Windows. The Harfbuzz text shaping is preferred to the previously 41MS-Windows. The HarfBuzz text shaping is preferred to the previously
42supported ones, so the font backends that use older shaping engines 42supported ones, so the font backends that use older shaping engines
43(FLT on GNU and Unix systems and Uniscribe on MS-Windows) are not 43(FLT on GNU and Unix systems and Uniscribe on MS-Windows) are not
44enabled by default; they can be enabled via the 'font-backend' frame 44enabled 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)
4361 4361
4362 /* Can't scroll the display of w32 GUI frames when position of point 4362 /* Can't scroll the display of w32 GUI frames when position of point
4363 is indicated by the system caret, because scrolling the display 4363 is indicated by the system caret, because scrolling the display
4364 will then "copy" the pixles used by the caret. */ 4364 will then "copy" the pixels used by the caret. */
4365#ifdef HAVE_NTGUI 4365#ifdef HAVE_NTGUI
4366 if (w32_use_visible_system_caret) 4366 if (w32_use_visible_system_caret)
4367 return 0; 4367 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)
19193 19193
19194 /* Can't scroll the display of w32 GUI frames when position of point 19194 /* Can't scroll the display of w32 GUI frames when position of point
19195 is indicated by the system caret, because scrolling the display 19195 is indicated by the system caret, because scrolling the display
19196 will then "copy" the pixles used by the caret. */ 19196 will then "copy" the pixels used by the caret. */
19197#ifdef HAVE_NTGUI 19197#ifdef HAVE_NTGUI
19198 if (w32_use_visible_system_caret) 19198 if (w32_use_visible_system_caret)
19199 return false; 19199 return false;
@@ -20185,7 +20185,7 @@ try_window_id (struct window *w)
20185 20185
20186 /* Can't let scroll_run_hook below run on w32 GUI frames when 20186 /* Can't let scroll_run_hook below run on w32 GUI frames when
20187 position of point is indicated by the system caret, because 20187 position of point is indicated by the system caret, because
20188 scrolling the display will then "copy" the pixles used by the 20188 scrolling the display will then "copy" the pixels used by the
20189 caret. */ 20189 caret. */
20190#ifdef HAVE_NTGUI 20190#ifdef HAVE_NTGUI
20191 if (FRAME_W32_P (f) && w32_use_visible_system_caret) 20191 if (FRAME_W32_P (f) && w32_use_visible_system_caret)