From: nhmall Date: Sat, 28 Nov 2020 13:59:03 +0000 (-0500) Subject: spelling correction tidbit X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d6481ad8c5c2bf46543fccb2591dd981242f3de;p=nethack spelling correction tidbit Closes #415 --- diff --git a/doc/Guidebook.mn b/doc/Guidebook.mn index 975691af8..6a0366a73 100644 --- a/doc/Guidebook.mn +++ b/doc/Guidebook.mn @@ -2458,7 +2458,7 @@ NetHack. Here is a list of the armor class values provided by suits of armor: . .\" Replace the old one suit per line table with a more condensed one. -.\" AC4 and AC7 have been split into two lines to accomodate plain text +.\" AC4 and AC7 have been split into two lines to accommodate plain text .\" output (Guidebook.txt). AC4 needs it to reduce overall width; after .\" that, AC7 became the longest and the table looks better by shortening .\" it to get the second column (number) closer to the text on most lines. diff --git a/doc/fixes36.1 b/doc/fixes36.1 index 5fda55113..3b0b27ddb 100644 --- a/doc/fixes36.1 +++ b/doc/fixes36.1 @@ -853,7 +853,7 @@ X11: new NetHack*highlight_prompt resource to control whether the persistent configuration will be highlighted when it's expecting input X11: NetHack*extcmd_height_delta resource can be used to adjust initial size of the extended commands menu -X11: status display split into three columns to accomodate Stone/Deaf/Lev/&c; +X11: status display split into three columns to accommodate Stone/Deaf/Lev/&c; NetHack*status_condition.foreground, .background, and .showGrip resources replaced by status_condition[1-3].* X11: more terminal-like default resources diff --git a/doc/fixes36.4 b/doc/fixes36.4 index a4b8991c4..912f80723 100644 --- a/doc/fixes36.4 +++ b/doc/fixes36.4 @@ -11,7 +11,7 @@ GDBPATH and GREPPATH from sysconf or -D... on compilation command line were at end of game when that was enabled fix the article used in the message when your steed encounters a polymorph trap allow teleporting onto the vibrating square -message "your knapsack can't accomodate any more items" when picking stuff up +message "your knapsack can't accommodate any more items" when picking stuff up or removing such from container was inaccurate if there was some gold pending; vary the message rather than add more convoluted pickup code dozen-ish assorted spelling/typo fixes in messages and source comments diff --git a/include/patchlevel.h b/include/patchlevel.h index a6d3fba00..d240f2245 100644 --- a/include/patchlevel.h +++ b/include/patchlevel.h @@ -98,7 +98,7 @@ * fix the article used in the message when your steed encounters a polymorph * trap * allow teleporting onto the vibrating square - * message "your knapsack can't accomodate any more items" when picking stuff + * message "your knapsack can't accommodate any more items" when picking stuff * up or removing such from container was inaccurate if there was some * gold pending; vary the message rather than add more convoluted pickup * code diff --git a/outdated/sys/wince/mhmsgwnd.c b/outdated/sys/wince/mhmsgwnd.c index 1c8976564..a73eec3e9 100644 --- a/outdated/sys/wince/mhmsgwnd.c +++ b/outdated/sys/wince/mhmsgwnd.c @@ -609,7 +609,7 @@ mswin_message_window_size(HWND hWnd, LPSIZE sz) data = (PNHMessageWindow) GetWindowLong(hWnd, GWL_USERDATA); if (data) { - /* set size to accomodate MSG_VISIBLE_LINES, highligh rectangle and + /* set size to accommodate MSG_VISIBLE_LINES, highligh rectangle and horizontal scroll bar (difference between window rect and client rect */ GetClientRect(hWnd, &client_rt); diff --git a/win/win32/mhmsgwnd.c b/win/win32/mhmsgwnd.c index f4f6fe09d..c821583cc 100644 --- a/win/win32/mhmsgwnd.c +++ b/win/win32/mhmsgwnd.c @@ -769,7 +769,7 @@ mswin_message_window_size(HWND hWnd, LPSIZE sz) sz->cx = rt.right - rt.left; sz->cy = rt.bottom - rt.top; - /* set size to accomodate MSG_VISIBLE_LINES and + /* set size to accommodate MSG_VISIBLE_LINES and horizontal scroll bar (difference between window rect and client rect */ GetClientRect(hWnd, &client_rt);