Skip to content

Commit 196c42b

Browse files
committed
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.
1 parent 4f2b967 commit 196c42b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

etc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ HarfBuzz text shaping engine. It is on by default; use './configure
3838
--without-harfbuzz' to build without it. The HarfBuzz text shaping is
3939
available via new font backend drivers 'xfthb' and 'ftcrhb' for Xft
4040
and Cairo drawings, respectively, and via the 'harfbuzz' backend on
41-
MS-Windows. The Harfbuzz text shaping is preferred to the previously
41+
MS-Windows. The HarfBuzz text shaping is preferred to the previously
4242
supported ones, so the font backends that use older shaping engines
4343
(FLT on GNU and Unix systems and Uniscribe on MS-Windows) are not
4444
enabled by default; they can be enabled via the 'font-backend' frame

src/dispnew.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4361,7 +4361,7 @@ scrolling_window (struct window *w, int tab_line_p)
43614361

43624362
/* Can't scroll the display of w32 GUI frames when position of point
43634363
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. */
43654365
#ifdef HAVE_NTGUI
43664366
if (w32_use_visible_system_caret)
43674367
return 0;

src/xdisp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19193,7 +19193,7 @@ try_window_reusing_current_matrix (struct window *w)
1919319193

1919419194
/* Can't scroll the display of w32 GUI frames when position of point
1919519195
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. */
1919719197
#ifdef HAVE_NTGUI
1919819198
if (w32_use_visible_system_caret)
1919919199
return false;
@@ -20185,7 +20185,7 @@ try_window_id (struct window *w)
2018520185

2018620186
/* Can't let scroll_run_hook below run on w32 GUI frames when
2018720187
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
2018920189
caret. */
2019020190
#ifdef HAVE_NTGUI
2019120191
if (FRAME_W32_P (f) && w32_use_visible_system_caret)

0 commit comments

Comments
 (0)