aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2020-01-22 19:17:32 +0200
committerEli Zaretskii2020-01-22 19:17:32 +0200
commit196c42b8bf9cc9ce804aab38198391e9bff126e5 (patch)
treedd2e3f8afd6b639711bb2b603b7d07b22145e7f8 /src
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.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c2
-rw-r--r--src/xdisp.c4
2 files changed, 3 insertions, 3 deletions
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)