Module: docs
Branch: master
Commit: 137f6602815ff2b82a724223639da1d2bc449a90
URL: http://source.winehq.org/git/docs.git/?a=commit;h=137f6602815ff2b82a7242236…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Fri May 14 18:41:07 2010 +0200
winelib: Fix a typo.
---
en/winelib-intro.sgml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/en/winelib-intro.sgml b/en/winelib-intro.sgml
index 6ad4aa4..ca71a20 100644
--- a/en/winelib-intro.sgml
+++ b/en/winelib-intro.sgml
@@ -125,7 +125,7 @@
<para>
Let's suppose that you are already in the top directory of your
sources. Then converting your project to Winelib may be as simple
- as just running the three commands below (note the dot indicating
+ as just running the two commands below (note the dot indicating
current directory at the end of the first command):
</para>
<programlisting>
Module: docs
Branch: master
Commit: 0f18b1c446c4b6772193cc26bb93cfd987fcda8b
URL: http://source.winehq.org/git/docs.git/?a=commit;h=0f18b1c446c4b6772193cc26b…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Fri May 14 18:40:49 2010 +0200
winedev: Use newer tags.
---
en/winedev-otherdebug.sgml | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/en/winedev-otherdebug.sgml b/en/winedev-otherdebug.sgml
index 2aa4881..0454a1f 100644
--- a/en/winedev-otherdebug.sgml
+++ b/en/winedev-otherdebug.sgml
@@ -380,13 +380,13 @@ int main (void)
</listitem>
<listitem>
<para>
- If you found that something broke between wine-20041019 and
- wine-20050930 (these are [WWW] release tags). To start regression
+ If you found that something broke between wine-1.1.42 and
+ wine-1.1.44 (these are [WWW] release tags). To start regression
testing we run:
<screen>
git bisect start
-git bisect good wine-20041019
-git bisect bad wine-20050930
+git bisect good wine-1.1.42
+git bisect bad wine-1.1.44
</screen>
</para>
<para>
Module: wine
Branch: master
Commit: 69326aa246d388df7c28944c0370b1e2bf5fd1df
URL: http://source.winehq.org/git/wine.git/?a=commit;h=69326aa246d388df7c28944c0…
Author: Detlef Riekenberg <wine.dev(a)web.de>
Date: Fri May 14 17:08:37 2010 +0200
kernel32: Move a 16 bit related comment to krnl386.
---
dlls/kernel32/module.c | 4 +---
dlls/krnl386.exe16/ne_module.c | 4 +++-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/kernel32/module.c b/dlls/kernel32/module.c
index 2b8f11e..21db5cb 100644
--- a/dlls/kernel32/module.c
+++ b/dlls/kernel32/module.c
@@ -588,9 +588,7 @@ HMODULE WINAPI GetModuleHandleW(LPCWSTR module)
* Failure: 0. Use GetLastError() to determine the cause.
*
* NOTES
- * This function always returns the long path of hModule (as opposed to
- * GetModuleFileName16() which returns short paths when the modules version
- * field is < 4.0).
+ * This function always returns the long path of hModule
* The function doesn't write a terminating '\0' if the buffer is too
* small.
*/
diff --git a/dlls/krnl386.exe16/ne_module.c b/dlls/krnl386.exe16/ne_module.c
index aa1c9c2..fe80126 100644
--- a/dlls/krnl386.exe16/ne_module.c
+++ b/dlls/krnl386.exe16/ne_module.c
@@ -1518,7 +1518,9 @@ BOOL16 WINAPI GetModuleName16( HINSTANCE16 hinst, LPSTR buf, INT16 count )
/**********************************************************************
* GetModuleFileName (KERNEL.49)
*
- * Comment: see GetModuleFileNameA
+ * See also: GetModuleFileNameA
+ *
+ * This function returns short paths when the modules version field is < 4.0).
*
* Even if invoked by second instance of a program,
* it still returns path of first one.