https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4e721f780e72bc7a0c780…
commit 4e721f780e72bc7a0c780a477b76b7f09126c145
Author: Doug Lyons <douglyons(a)douglyons.com>
AuthorDate: Sun Feb 23 10:47:48 2020 -0600
Commit: GitHub <noreply(a)github.com>
CommitDate: Sun Feb 23 17:47:48 2020 +0100
[SHELL32] Fix unneeded error Popup with Git for Windows. (#1854)
* Fix unnecessary error popup when installing Git for Windows.
* Add reasons for return value of 42.
---
dll/win32/shell32/shlexec.cpp | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/dll/win32/shell32/shlexec.cpp b/dll/win32/shell32/shlexec.cpp
index 099a964c93e..3feab9c2ff6 100644
--- a/dll/win32/shell32/shlexec.cpp
+++ b/dll/win32/shell32/shlexec.cpp
@@ -1080,6 +1080,22 @@ static unsigned dde_connect(const WCHAR* key, const WCHAR* start, WCHAR* ddeexec
TRACE("Couldn't launch\n");
goto error;
}
+ /* if ddeexec is NULL, then we just need to exit here */
+ if (ddeexec == NULL)
+ {
+ TRACE("Exiting because ddeexec is NULL. ret=42.\n");
+ /* See https://docs.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-she… */
+ /* for reason why we use 42 here and also "Shell32_apitest ShellExecuteW" regression test */
+ return 42;
+ }
+ /* if ddeexec is 'empty string', then we just need to exit here */
+ if (wcscmp(ddeexec, L"") == 0)
+ {
+ TRACE("Exiting because ddeexec is 'empty string'. ret=42.\n");
+ /* See https://docs.microsoft.com/en-us/windows/win32/api/shellapi/nf-shellapi-she… */
+ /* for reason why we use 42 here and also "Shell32_apitest ShellExecuteW" regression test */
+ return 42;
+ }
hConv = DdeConnect(ddeInst, hszApp, hszTopic, NULL);
if (!hConv)
{
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=820dbfccd015d8890d594…
commit 820dbfccd015d8890d5948b6abd5089e8ab8cf86
Author: Joachim Henze <Joachim.Henze(a)reactos.org>
AuthorDate: Sun Feb 23 13:55:27 2020 +0100
Commit: Joachim Henze <Joachim.Henze(a)reactos.org>
CommitDate: Sun Feb 23 13:56:05 2020 +0100
[NTUSER] Fix regression CORE-11828
Fixes symptom "mouse pointer vanishes when closing
applications via x in title-bar"
The bug in WIN32SS was unhidden by SVN r65496 == git
5c1a8109c84ed0aefdac2488ff666070a7ae52f6
, when we introduced explorer_new. The old explorer
had a workaround built within.
Many thanks to patches author James Tabor.
I intend to backport into 0.4.13RC as well.
---
win32ss/user/ntuser/main.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/win32ss/user/ntuser/main.c b/win32ss/user/ntuser/main.c
index 95ab58474c9..be31889664d 100644
--- a/win32ss/user/ntuser/main.c
+++ b/win32ss/user/ntuser/main.c
@@ -420,6 +420,16 @@ UserDeleteW32Thread(PTHREADINFO pti)
ExFreePoolWithTag(pti, USERTAG_THREADINFO);
IntDereferenceProcessInfo(ppi);
+
+ {
+ // Find another queue for mouse cursor.
+ MSG msg;
+ msg.message = WM_MOUSEMOVE;
+ msg.wParam = UserGetMouseButtonsState();
+ msg.lParam = MAKELPARAM(gpsi->ptCursor.x, gpsi->ptCursor.y);
+ msg.pt = gpsi->ptCursor;
+ co_MsqInsertMouseMessage(&msg, 0, 0, TRUE);
+ }
}
NTSTATUS
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=1a83762ccc5c8266cd8a0…
commit 1a83762ccc5c8266cd8a00a4c5334ae7cac95112
Author: Serge Gautherie <reactos-git_serge_171003(a)gautherie.fr>
AuthorDate: Fri Feb 21 00:33:37 2020 +0100
Commit: Colin Finck <colin(a)reactos.org>
CommitDate: Sun Feb 23 12:35:50 2020 +0100
[REACTOS] Fix '\n.' typos
---
base/applications/cmdutils/help/lang/cs-CZ.rc | 2 +-
base/applications/cmdutils/help/lang/de-DE.rc | 2 +-
base/applications/cmdutils/help/lang/el-GR.rc | 2 +-
base/applications/cmdutils/help/lang/en-US.rc | 2 +-
base/applications/cmdutils/help/lang/es-ES.rc | 2 +-
base/applications/cmdutils/help/lang/hu-HU.rc | 2 +-
base/applications/cmdutils/help/lang/id-ID.rc | 2 +-
base/applications/cmdutils/help/lang/it-IT.rc | 2 +-
base/applications/cmdutils/help/lang/ja-JP.rc | 2 +-
base/applications/cmdutils/help/lang/no-NO.rc | 2 +-
base/applications/cmdutils/help/lang/pl-PL.rc | 2 +-
base/applications/cmdutils/help/lang/ro-RO.rc | 2 +-
base/applications/cmdutils/help/lang/ru-RU.rc | 2 +-
base/applications/cmdutils/help/lang/sk-SK.rc | 2 +-
base/applications/cmdutils/help/lang/sq-AL.rc | 2 +-
base/applications/cmdutils/help/lang/sv-SE.rc | 2 +-
base/applications/cmdutils/help/lang/uk-UA.rc | 2 +-
base/applications/dxdiag/lang/bg-BG.rc | 2 +-
base/applications/dxdiag/lang/cs-CZ.rc | 2 +-
base/applications/dxdiag/lang/en-US.rc | 2 +-
base/applications/dxdiag/lang/es-ES.rc | 2 +-
base/applications/dxdiag/lang/fr-FR.rc | 2 +-
base/applications/dxdiag/lang/he-IL.rc | 2 +-
base/applications/dxdiag/lang/it-IT.rc | 2 +-
base/applications/dxdiag/lang/ja-JP.rc | 2 +-
base/applications/dxdiag/lang/ko-KR.rc | 2 +-
base/applications/dxdiag/lang/nl-NL.rc | 2 +-
base/applications/dxdiag/lang/no-NO.rc | 2 +-
base/applications/dxdiag/lang/pl-PL.rc | 2 +-
base/applications/dxdiag/lang/pt-BR.rc | 2 +-
base/applications/dxdiag/lang/ru-RU.rc | 2 +-
base/applications/dxdiag/lang/sk-SK.rc | 2 +-
base/applications/dxdiag/lang/sq-AL.rc | 2 +-
base/applications/dxdiag/lang/sv-SE.rc | 2 +-
base/applications/dxdiag/lang/tr-TR.rc | 2 +-
base/applications/dxdiag/lang/uk-UA.rc | 2 +-
base/applications/dxdiag/lang/zh-TW.rc | 2 +-
base/applications/shutdown/lang/it-IT.rc | 6 +++---
ntoskrnl/kdbg/kdb.c | 2 +-
39 files changed, 41 insertions(+), 41 deletions(-)
diff --git a/base/applications/cmdutils/help/lang/cs-CZ.rc b/base/applications/cmdutils/help/lang/cs-CZ.rc
index 5784eb32afa..696bf3623db 100644
--- a/base/applications/cmdutils/help/lang/cs-CZ.rc
+++ b/base/applications/cmdutils/help/lang/cs-CZ.rc
@@ -3,7 +3,7 @@ LANGUAGE LANG_CZECH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/de-DE.rc b/base/applications/cmdutils/help/lang/de-DE.rc
index 05831c3f350..d601aa7ec40 100644
--- a/base/applications/cmdutils/help/lang/de-DE.rc
+++ b/base/applications/cmdutils/help/lang/de-DE.rc
@@ -4,7 +4,7 @@ LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "Dieser Befehl wird von der Hilfe nicht unterstützt.\nVersuchen Sie ""%s /?""\n."
+ IDS_NO_ENTRY "Dieser Befehl wird von der Hilfe nicht unterstützt.\nVersuchen Sie ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/el-GR.rc b/base/applications/cmdutils/help/lang/el-GR.rc
index 6fba5b8e120..bd2e41fe414 100644
--- a/base/applications/cmdutils/help/lang/el-GR.rc
+++ b/base/applications/cmdutils/help/lang/el-GR.rc
@@ -7,7 +7,7 @@ LANGUAGE LANG_GREEK, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/en-US.rc b/base/applications/cmdutils/help/lang/en-US.rc
index 4af37082650..11c79affcab 100644
--- a/base/applications/cmdutils/help/lang/en-US.rc
+++ b/base/applications/cmdutils/help/lang/en-US.rc
@@ -4,7 +4,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/es-ES.rc b/base/applications/cmdutils/help/lang/es-ES.rc
index 63d8c1b2a94..d37e3060e74 100644
--- a/base/applications/cmdutils/help/lang/es-ES.rc
+++ b/base/applications/cmdutils/help/lang/es-ES.rc
@@ -7,7 +7,7 @@ LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/hu-HU.rc b/base/applications/cmdutils/help/lang/hu-HU.rc
index 56636d8282d..de681c16af5 100644
--- a/base/applications/cmdutils/help/lang/hu-HU.rc
+++ b/base/applications/cmdutils/help/lang/hu-HU.rc
@@ -7,7 +7,7 @@ LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/id-ID.rc b/base/applications/cmdutils/help/lang/id-ID.rc
index e3fd901b54a..a131bbf8837 100644
--- a/base/applications/cmdutils/help/lang/id-ID.rc
+++ b/base/applications/cmdutils/help/lang/id-ID.rc
@@ -4,7 +4,7 @@ LANGUAGE LANG_INDONESIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "Perintah ini tidak didukung oleh utilitas bantuan.\nCoba ""%s /?""\n."
+ IDS_NO_ENTRY "Perintah ini tidak didukung oleh utilitas bantuan.\nCoba ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/it-IT.rc b/base/applications/cmdutils/help/lang/it-IT.rc
index ff3684d4321..1310fa7a76a 100644
--- a/base/applications/cmdutils/help/lang/it-IT.rc
+++ b/base/applications/cmdutils/help/lang/it-IT.rc
@@ -2,7 +2,7 @@ LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/ja-JP.rc b/base/applications/cmdutils/help/lang/ja-JP.rc
index a3cba85d74a..3f2aa235400 100644
--- a/base/applications/cmdutils/help/lang/ja-JP.rc
+++ b/base/applications/cmdutils/help/lang/ja-JP.rc
@@ -4,7 +4,7 @@ LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/no-NO.rc b/base/applications/cmdutils/help/lang/no-NO.rc
index eacb9ae5b3d..92fa9702fa6 100644
--- a/base/applications/cmdutils/help/lang/no-NO.rc
+++ b/base/applications/cmdutils/help/lang/no-NO.rc
@@ -2,7 +2,7 @@ LANGUAGE LANG_NORWEGIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/pl-PL.rc b/base/applications/cmdutils/help/lang/pl-PL.rc
index 2338b2c9718..bc6aa74c7b5 100644
--- a/base/applications/cmdutils/help/lang/pl-PL.rc
+++ b/base/applications/cmdutils/help/lang/pl-PL.rc
@@ -12,7 +12,7 @@ LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "To polecenie nie jest obsługiwane przez narzędzie pomocy.\nSpróbuj ""%s /?""\n."
+ IDS_NO_ENTRY "To polecenie nie jest obsługiwane przez narzędzie pomocy.\nSpróbuj ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/ro-RO.rc b/base/applications/cmdutils/help/lang/ro-RO.rc
index 81dc0b6ea66..2bd6d1756e6 100644
--- a/base/applications/cmdutils/help/lang/ro-RO.rc
+++ b/base/applications/cmdutils/help/lang/ro-RO.rc
@@ -9,7 +9,7 @@ LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "Această comandă nu este recunoscută de utilitarul manual.\nÎncercați ""%s /?""\n."
+ IDS_NO_ENTRY "Această comandă nu este recunoscută de utilitarul manual.\nÎncercați ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/ru-RU.rc b/base/applications/cmdutils/help/lang/ru-RU.rc
index b877bfd0a2d..5d84164e4ee 100644
--- a/base/applications/cmdutils/help/lang/ru-RU.rc
+++ b/base/applications/cmdutils/help/lang/ru-RU.rc
@@ -7,7 +7,7 @@ LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "Данная команда не поддерживается. Воспользуйтесь параметром ""%s /?""\n."
+ IDS_NO_ENTRY "Данная команда не поддерживается. Воспользуйтесь параметром ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/sk-SK.rc b/base/applications/cmdutils/help/lang/sk-SK.rc
index d614852a0d8..314104276ac 100644
--- a/base/applications/cmdutils/help/lang/sk-SK.rc
+++ b/base/applications/cmdutils/help/lang/sk-SK.rc
@@ -10,7 +10,7 @@ LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/sq-AL.rc b/base/applications/cmdutils/help/lang/sq-AL.rc
index f0842ea139c..7f6616be9e8 100644
--- a/base/applications/cmdutils/help/lang/sq-AL.rc
+++ b/base/applications/cmdutils/help/lang/sq-AL.rc
@@ -6,7 +6,7 @@ LANGUAGE LANG_ALBANIAN, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/sv-SE.rc b/base/applications/cmdutils/help/lang/sv-SE.rc
index 56bb23f1a35..6074831cb53 100644
--- a/base/applications/cmdutils/help/lang/sv-SE.rc
+++ b/base/applications/cmdutils/help/lang/sv-SE.rc
@@ -2,7 +2,7 @@ LANGUAGE LANG_SWEDISH, SUBLANG_NEUTRAL
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/cmdutils/help/lang/uk-UA.rc b/base/applications/cmdutils/help/lang/uk-UA.rc
index 2ef104e46c3..84af002951d 100644
--- a/base/applications/cmdutils/help/lang/uk-UA.rc
+++ b/base/applications/cmdutils/help/lang/uk-UA.rc
@@ -10,7 +10,7 @@ LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
STRINGTABLE
BEGIN
- IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?""\n."
+ IDS_NO_ENTRY "This command is not supported by the help utility.\nTry ""%s /?"".\n"
END
STRINGTABLE
diff --git a/base/applications/dxdiag/lang/bg-BG.rc b/base/applications/dxdiag/lang/bg-BG.rc
index 18c768eb9d7..5d93fde0250 100644
--- a/base/applications/dxdiag/lang/bg-BG.rc
+++ b/base/applications/dxdiag/lang/bg-BG.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/cs-CZ.rc b/base/applications/dxdiag/lang/cs-CZ.rc
index ee87ad1aa95..082484e8ff0 100644
--- a/base/applications/dxdiag/lang/cs-CZ.rc
+++ b/base/applications/dxdiag/lang/cs-CZ.rc
@@ -255,5 +255,5 @@ BEGIN
IDS_DMUSIC_DLS "Podporuje DLS"
IDS_DMUSIC_EXT "Externí"
IDS_DMUSIC_PORT "Výchozí port"
- IDS_DDDISABLE_MSG "Tímto dojde k zakázání akcelerace DirectDraw na všech zobrazovacích zařízeních\n.Přejete si pokračovat?\n"
+ IDS_DDDISABLE_MSG "Tímto dojde k zakázání akcelerace DirectDraw na všech zobrazovacích zařízeních.\nPřejete si pokračovat?\n"
END
diff --git a/base/applications/dxdiag/lang/en-US.rc b/base/applications/dxdiag/lang/en-US.rc
index 6b2d7a0a99d..da2e54a4c94 100644
--- a/base/applications/dxdiag/lang/en-US.rc
+++ b/base/applications/dxdiag/lang/en-US.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/es-ES.rc b/base/applications/dxdiag/lang/es-ES.rc
index 61671ed4d02..21dad48953b 100644
--- a/base/applications/dxdiag/lang/es-ES.rc
+++ b/base/applications/dxdiag/lang/es-ES.rc
@@ -252,5 +252,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/fr-FR.rc b/base/applications/dxdiag/lang/fr-FR.rc
index 3470656f3b5..445b53a9163 100644
--- a/base/applications/dxdiag/lang/fr-FR.rc
+++ b/base/applications/dxdiag/lang/fr-FR.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/he-IL.rc b/base/applications/dxdiag/lang/he-IL.rc
index f8118cfc8df..bab366e5ef1 100644
--- a/base/applications/dxdiag/lang/he-IL.rc
+++ b/base/applications/dxdiag/lang/he-IL.rc
@@ -259,5 +259,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/it-IT.rc b/base/applications/dxdiag/lang/it-IT.rc
index af91979eb0d..cd1f07867f5 100644
--- a/base/applications/dxdiag/lang/it-IT.rc
+++ b/base/applications/dxdiag/lang/it-IT.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/ja-JP.rc b/base/applications/dxdiag/lang/ja-JP.rc
index bb8820fb2de..13d9fcbcbf2 100644
--- a/base/applications/dxdiag/lang/ja-JP.rc
+++ b/base/applications/dxdiag/lang/ja-JP.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/ko-KR.rc b/base/applications/dxdiag/lang/ko-KR.rc
index 1037bff92b3..f46aca6d8a8 100644
--- a/base/applications/dxdiag/lang/ko-KR.rc
+++ b/base/applications/dxdiag/lang/ko-KR.rc
@@ -252,5 +252,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/nl-NL.rc b/base/applications/dxdiag/lang/nl-NL.rc
index a358b2d4b0f..033e5faa8ab 100644
--- a/base/applications/dxdiag/lang/nl-NL.rc
+++ b/base/applications/dxdiag/lang/nl-NL.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/no-NO.rc b/base/applications/dxdiag/lang/no-NO.rc
index e967b40492d..672e2829b28 100644
--- a/base/applications/dxdiag/lang/no-NO.rc
+++ b/base/applications/dxdiag/lang/no-NO.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/pl-PL.rc b/base/applications/dxdiag/lang/pl-PL.rc
index 33f540fe160..06130881db9 100644
--- a/base/applications/dxdiag/lang/pl-PL.rc
+++ b/base/applications/dxdiag/lang/pl-PL.rc
@@ -259,5 +259,5 @@ BEGIN
IDS_DMUSIC_DLS "Obsługuje próbki DLS"
IDS_DMUSIC_EXT "Zewnętrzny"
IDS_DMUSIC_PORT "Port domyślny"
- IDS_DDDISABLE_MSG "Spowoduje to wyłączenie przyspieszania sprzętowego DirectDraw dla wszystkich urządzeń wyświetlających w systemie\n.Czy chcesz kontynuować?\n"
+ IDS_DDDISABLE_MSG "Spowoduje to wyłączenie przyspieszania sprzętowego DirectDraw dla wszystkich urządzeń wyświetlających w systemie.\nCzy chcesz kontynuować?\n"
END
diff --git a/base/applications/dxdiag/lang/pt-BR.rc b/base/applications/dxdiag/lang/pt-BR.rc
index f1f41161c83..dae11384358 100644
--- a/base/applications/dxdiag/lang/pt-BR.rc
+++ b/base/applications/dxdiag/lang/pt-BR.rc
@@ -252,5 +252,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/ru-RU.rc b/base/applications/dxdiag/lang/ru-RU.rc
index 4b1bcf9a1ec..02bcd3e103c 100644
--- a/base/applications/dxdiag/lang/ru-RU.rc
+++ b/base/applications/dxdiag/lang/ru-RU.rc
@@ -250,5 +250,5 @@ BEGIN
IDS_DMUSIC_DLS "Поддерживает DLS"
IDS_DMUSIC_EXT "Внешний"
IDS_DMUSIC_PORT "Стандартный порт"
- IDS_DDDISABLE_MSG "Это отключит все аппаратное ускорение DirectDraw на всех дисплеях\n.Вы хотите продолжить?\n"
+ IDS_DDDISABLE_MSG "Это отключит все аппаратное ускорение DirectDraw на всех дисплеях.\nВы хотите продолжить?\n"
END
diff --git a/base/applications/dxdiag/lang/sk-SK.rc b/base/applications/dxdiag/lang/sk-SK.rc
index fbe6f951582..44a917db138 100644
--- a/base/applications/dxdiag/lang/sk-SK.rc
+++ b/base/applications/dxdiag/lang/sk-SK.rc
@@ -255,5 +255,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/sq-AL.rc b/base/applications/dxdiag/lang/sq-AL.rc
index 55dc77e3f67..7773a7cabfe 100644
--- a/base/applications/dxdiag/lang/sq-AL.rc
+++ b/base/applications/dxdiag/lang/sq-AL.rc
@@ -254,5 +254,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/sv-SE.rc b/base/applications/dxdiag/lang/sv-SE.rc
index 0eebb5b047a..321facb1e0d 100644
--- a/base/applications/dxdiag/lang/sv-SE.rc
+++ b/base/applications/dxdiag/lang/sv-SE.rc
@@ -257,5 +257,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/tr-TR.rc b/base/applications/dxdiag/lang/tr-TR.rc
index a5d8c16167d..b0585e4e6ab 100644
--- a/base/applications/dxdiag/lang/tr-TR.rc
+++ b/base/applications/dxdiag/lang/tr-TR.rc
@@ -252,5 +252,5 @@ BEGIN
IDS_DMUSIC_DLS "DLS'yi Destekler"
IDS_DMUSIC_EXT "Dış"
IDS_DMUSIC_PORT "Ön Tanımlı Giriş"
- IDS_DDDISABLE_MSG "Bu, tüm görüntü aygıtlarında ReactDraw için tüm donanım ivmelerini edilginleştirecektir.\n. Sürdürmek ister misiniz?\n"
+ IDS_DDDISABLE_MSG "Bu, tüm görüntü aygıtlarında ReactDraw için tüm donanım ivmelerini edilginleştirecektir.\nSürdürmek ister misiniz?\n"
END
diff --git a/base/applications/dxdiag/lang/uk-UA.rc b/base/applications/dxdiag/lang/uk-UA.rc
index 839a5c7260d..971094a14cc 100644
--- a/base/applications/dxdiag/lang/uk-UA.rc
+++ b/base/applications/dxdiag/lang/uk-UA.rc
@@ -258,5 +258,5 @@ BEGIN
IDS_DMUSIC_DLS "Supports DLS"
IDS_DMUSIC_EXT "External"
IDS_DMUSIC_PORT "Default Port"
- IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices\n.Do you wish to continue?\n"
+ IDS_DDDISABLE_MSG "This will disable all hardware acceleration for DirectDraw on all display devices.\nDo you wish to continue?\n"
END
diff --git a/base/applications/dxdiag/lang/zh-TW.rc b/base/applications/dxdiag/lang/zh-TW.rc
index 795dfe513fb..be00d93965f 100644
--- a/base/applications/dxdiag/lang/zh-TW.rc
+++ b/base/applications/dxdiag/lang/zh-TW.rc
@@ -258,5 +258,5 @@ BEGIN
IDS_DMUSIC_DLS "支援 DLS"
IDS_DMUSIC_EXT "外部"
IDS_DMUSIC_PORT "預設埠"
- IDS_DDDISABLE_MSG "這將禁用 DirectDraw 所有的顯示裝置上的所有硬體加速\n.您要繼續嗎?\n"
+ IDS_DDDISABLE_MSG "這將禁用 DirectDraw 所有的顯示裝置上的所有硬體加速.\n您要繼續嗎?\n"
END
diff --git a/base/applications/shutdown/lang/it-IT.rc b/base/applications/shutdown/lang/it-IT.rc
index 2decaa4eff2..268ed6f07c3 100644
--- a/base/applications/shutdown/lang/it-IT.rc
+++ b/base/applications/shutdown/lang/it-IT.rc
@@ -66,10 +66,10 @@ Usage: shutdown [/?] [/i | /l | /s | /r | /g | /a | /p | /h | /e] [/f]\n\
IDS_ERROR_SHUTDOWN_REBOOT "ERROR: Impossibile arrestare e riavviare al tempo stesso.\n"
IDS_ERROR_TIMEOUT "ERROR: Il valore di timeout di u% è fuori dai limiti (0-315360000) \n"
- IDS_ERROR_ABORT "ERROR: Impossibile interrompere l'arresto del sistema \n."
+ IDS_ERROR_ABORT "ERROR: Impossibile interrompere l'arresto del sistema.\n"
IDS_ERROR_LOGOFF "ERROR: Impossibile disconnettersi dal sistema \n"
- IDS_ERROR_SHUTDOWN "ERROR: Impossibile arrestare il sistema \n."
- IDS_ERROR_RESTART "ERROR: Impossibile riavviare il sistema \n."
+ IDS_ERROR_SHUTDOWN "ERROR: Impossibile arrestare il sistema.\n"
+ IDS_ERROR_RESTART "ERROR: Impossibile riavviare il sistema.\n"
IDS_ERROR_MAX_COMMENT_LENGTH "ERROR: La lunghezza del commento supera il limite massimo di caratteri impostato dal sistema \n"
IDS_ERROR_HIBERNATE "ERROR: Impossibile avviare il sistema in modalità sospensione. \n"
IDS_ERROR_HIBERNATE_LOCAL "ERROR: La modalità sospensione non può essere avviata in modalità remota \n"
diff --git a/ntoskrnl/kdbg/kdb.c b/ntoskrnl/kdbg/kdb.c
index d2a890276fe..78662445af5 100644
--- a/ntoskrnl/kdbg/kdb.c
+++ b/ntoskrnl/kdbg/kdb.c
@@ -388,7 +388,7 @@ KdbpStepIntoInstruction(
__sidt(&Idtr.Limit);
if (IntVect >= (Idtr.Limit + 1) / 8)
{
- /*KdbpPrint("IDT does not contain interrupt vector %d\n.", IntVect);*/
+ /*KdbpPrint("IDT does not contain interrupt vector %d.\n", IntVect);*/
return TRUE;
}