Assorted spelling fixes

Francois Gouget fgouget at free.fr
Wed Mar 2 06:17:00 CST 2005


I added some checks based on Jon Griffiths' recent spelling fixes patch. 
This is why this patch is a bit bigger than usual.


Changelog:

  * dlls/comctl32/rebar.c
    dlls/comctl32/syslink.c
    dlls/gdi/region.c
    dlls/kernel/process.c
    dlls/msi/action.c
    dlls/msi/msi.c
    dlls/msvcrt/file.c
    dlls/ntdll/reg.c
    dlls/ole32/clipboard.c
    dlls/oleaut32/typelib.c
    dlls/oleaut32/varformat.c
    dlls/richedit/reader.c
    dlls/richedit/richedit.c
    dlls/shell32/clipboard.c
    dlls/shell32/shelllink.c
    dlls/shell32/shfldr_fs.c
    dlls/user/dde/dde_private.h
    dlls/user/tests/sysparams.c
    dlls/winedos/vxd.c
    dlls/winmm/wineoss/audio.c
    documentation/architecture.sgml
    documentation/getting.sgml
    include/objbase.h
    programs/cmdlgtst/cmdlgtst.c
    programs/wcmd/wcmdmain.c
    programs/wineboot/wineboot.c
    programs/winedbg/db_disasm.c
    programs/winevdm/winevdm.c
    tools/widl/client.c
    tools/winebuild/winebuild.man.in
    tools/winedump/pe.c
    tools/winedump/symbol.c
    tools/wrc/parser.y

    Assorted spelling fixes.


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
       Any sufficiently advanced bug is indistinguishable from a feature.
                             -- from some indian guy
-------------- next part --------------
Index: dlls/comctl32/rebar.c
===================================================================
RCS file: /var/cvs/wine/dlls/comctl32/rebar.c,v
retrieving revision 1.104
diff -u -p -r1.104 rebar.c
--- dlls/comctl32/rebar.c	2 Mar 2005 10:12:52 -0000	1.104
+++ dlls/comctl32/rebar.c	2 Mar 2005 11:15:22 -0000
@@ -1956,7 +1956,7 @@ REBAR_ValidateBand (REBAR_INFO *infoPtr,
     infoPtr->fStatus |= BAND_NEEDS_LAYOUT;
 
     /* Header is where the image, text and gripper exist  */
-    /* in the band and preceed the child window.          */
+    /* in the band and precede the child window.          */
 
     /* count number of non-FIXEDSIZE and non-Hidden bands */
     nonfixed = 0;
Index: dlls/comctl32/syslink.c
===================================================================
RCS file: /var/cvs/wine/dlls/comctl32/syslink.c,v
retrieving revision 1.8
diff -u -p -r1.8 syslink.c
--- dlls/comctl32/syslink.c	23 Dec 2004 18:24:50 -0000	1.8
+++ dlls/comctl32/syslink.c	25 Feb 2005 16:55:26 -0000
@@ -513,7 +513,7 @@ static VOID SYSLINK_RepaintLink (SYSLINK
 
 /***********************************************************************
  * SYSLINK_GetLinkItemByIndex
- * Retreives a document link by it's index
+ * Retrieves a document link by it's index
  */
 static PDOC_ITEM SYSLINK_GetLinkItemByIndex (SYSLINK_INFO *infoPtr, int iLink)
 {
@@ -532,7 +532,7 @@ static PDOC_ITEM SYSLINK_GetLinkItemByIn
 
 /***********************************************************************
  * SYSLINK_GetFocusLink
- * Retreives the link that has the LIS_FOCUSED bit
+ * Retrieves the link that has the LIS_FOCUSED bit
  */
 static PDOC_ITEM SYSLINK_GetFocusLink (SYSLINK_INFO *infoPtr, int *LinkId)
 {
Index: dlls/gdi/region.c
===================================================================
RCS file: /var/cvs/wine/dlls/gdi/region.c,v
retrieving revision 1.3
diff -u -p -r1.3 region.c
--- dlls/gdi/region.c	14 Feb 2005 11:52:12 -0000	1.3
+++ dlls/gdi/region.c	26 Feb 2005 11:53:51 -0000
@@ -1207,7 +1207,7 @@ static void REGION_UnionRectWithRegion(c
  * Create a region that is a frame around another region.
  * Compute the intersection of the region moved in all 4 directions
  * ( +x, -x, +y, -y) and subtract from the original.
- * The result looks slightly better then in Windows :)
+ * The result looks slightly better than in Windows :)
  */
 BOOL REGION_FrameRgn( HRGN hDest, HRGN hSrc, INT x, INT y )
 {
@@ -2170,7 +2170,7 @@ static void REGION_SubtractO (WINEREGION
 	else if (r2->left <= left)
 	{
 	    /*
-	     * Subtrahend preceeds minuend: nuke left edge of minuend.
+	     * Subtrahend precedes minuend: nuke left edge of minuend.
 	     */
 	    left = r2->right;
 	    if (left >= r1->right)
Index: dlls/kernel/process.c
===================================================================
RCS file: /var/cvs/wine/dlls/kernel/process.c,v
retrieving revision 1.83
diff -u -p -r1.83 process.c
--- dlls/kernel/process.c	25 Feb 2005 14:07:58 -0000	1.83
+++ dlls/kernel/process.c	25 Feb 2005 16:55:43 -0000
@@ -608,7 +608,7 @@ static BOOL build_command_line( WCHAR **
                 if (*a==' ' || *a=='\t') {
                     has_space=1;
                 } else if (*a=='"') {
-                    /* doubling of '\' preceeding a '"',
+                    /* doubling of '\' preceding a '"',
                      * plus escaping of said '"'
                      */
                     len+=2*bcount+1;
@@ -667,7 +667,7 @@ static BOOL build_command_line( WCHAR **
                     if (*a=='"') {
                         int i;
 
-                        /* Double all the '\\' preceeding this '"', plus one */
+                        /* Double all the '\\' preceding this '"', plus one */
                         for (i=0;i<=bcount;i++)
                             *p++='\\';
                         *p++='"';
Index: dlls/msi/action.c
===================================================================
RCS file: /var/cvs/wine/dlls/msi/action.c,v
retrieving revision 1.96
diff -u -p -r1.96 action.c
--- dlls/msi/action.c	1 Mar 2005 11:45:19 -0000	1.96
+++ dlls/msi/action.c	1 Mar 2005 14:42:31 -0000
@@ -2299,8 +2299,8 @@ static UINT SetFeatureStates(MSIPACKAGE 
         install_level = 1;
 
     /* ok hereis the _real_ rub
-     * all these activation/deactiontion things happen in order and things later
-     * on the list override things earlier on the list.
+     * all these activation/deactivation things happen in order and things
+     * later on the list override things earlier on the list.
      * 1) INSTALLLEVEL processing
      * 2) ADDLOCAL
      * 3) REMOVE
@@ -2312,13 +2312,13 @@ static UINT SetFeatureStates(MSIPACKAGE 
      * 9) FILEADDLOCAL
      * 10) FILEADDSOURCE
      * 11) FILEADDDEFAULT
-     * I have confirmed this if ADDLOCALis stated then the INSTALLLEVEL is
-     * itnored for all the features. seems strange, epsecially since it is not
+     * I have confirmed that if ADDLOCAL is stated then the INSTALLLEVEL is
+     * ignored for all the features. seems strange, especially since it is not
      * documented anywhere, but it is how it works. 
      *
-     * I am still ignoring alot of these. But that is ok for now, ADDLOCAL and
-     * REMOVE are the big ones, since we dont handle administrative installs yet
-     * anyway.
+     * I am still ignoring a lot of these. But that is ok for now, ADDLOCAL and
+     * REMOVE are the big ones, since we don't handle administrative installs
+     * yet anyway.
      */
     override |= process_state_property(package,szAddLocal,INSTALLSTATE_LOCAL);
     override |= process_state_property(package,szRemove,INSTALLSTATE_ABSENT);
Index: dlls/msi/msi.c
===================================================================
RCS file: /var/cvs/wine/dlls/msi/msi.c,v
retrieving revision 1.65
diff -u -p -r1.65 msi.c
--- dlls/msi/msi.c	25 Feb 2005 14:07:58 -0000	1.65
+++ dlls/msi/msi.c	25 Feb 2005 16:57:36 -0000
@@ -1176,7 +1176,7 @@ INSTALLSTATE WINAPI MsiGetComponentPathW
     }
     else
     {
-        /* PROBIBLY a file */
+        /* PROBABLY a file */
         if ( GetFileAttributesW(path) != INVALID_FILE_ATTRIBUTES )
             rrc = INSTALLSTATE_LOCAL;
         else
Index: dlls/msvcrt/file.c
===================================================================
RCS file: /var/cvs/wine/dlls/msvcrt/file.c,v
retrieving revision 1.80
diff -u -p -r1.80 file.c
--- dlls/msvcrt/file.c	10 Jan 2005 14:28:21 -0000	1.80
+++ dlls/msvcrt/file.c	25 Feb 2005 16:58:26 -0000
@@ -1971,7 +1971,7 @@ int _write(int fd, const void* buf, unsi
   {
       unsigned int i, j, nr_lf;
       char *s =(char*)buf, *buf_start=(char*)buf, *p;
-      /* find number of \n ( without preceeding \r */
+      /* find number of \n ( without preceding \r ) */
       for ( nr_lf=0,i = 0; i <count; i++)
       {
           if (s[i]== '\n')
Index: dlls/ntdll/reg.c
===================================================================
RCS file: /var/cvs/wine/dlls/ntdll/reg.c,v
retrieving revision 1.53
diff -u -p -r1.53 reg.c
--- dlls/ntdll/reg.c	15 Feb 2005 20:47:25 -0000	1.53
+++ dlls/ntdll/reg.c	22 Feb 2005 16:32:41 -0000
@@ -1212,7 +1212,7 @@ NTSTATUS WINAPI RtlCheckRegistryKey(IN U
  *  ValueName  [I] Name of the value to delete
  *
  * RETURNS
- *  STATUS_SUCCESS if the specified key is sucesfully deleted, or an NTSTATUS error code.
+ *  STATUS_SUCCESS if the specified key is successfully deleted, or an NTSTATUS error code.
  */
 NTSTATUS WINAPI RtlDeleteRegistryValue(IN ULONG RelativeTo, IN PCWSTR Path, IN PCWSTR ValueName)
 {
Index: dlls/ole32/clipboard.c
===================================================================
RCS file: /var/cvs/wine/dlls/ole32/clipboard.c,v
retrieving revision 1.38
diff -u -p -r1.38 clipboard.c
--- dlls/ole32/clipboard.c	23 Dec 2004 20:20:49 -0000	1.38
+++ dlls/ole32/clipboard.c	25 Feb 2005 16:58:50 -0000
@@ -799,7 +799,7 @@ LRESULT CALLBACK OLEClipbrd_WndProc
      * (Recall that in OleSetClipboard, we used SetClipboardData to
      * make all HGLOBAL formats supported by the source IDataObject
      * available using delayed rendering)
-     * On receiving this mesage we must actually render the data in the
+     * On receiving this message we must actually render the data in the
      * specified format and place it on the clipboard by calling the
      * SetClipboardData function.
      */
Index: dlls/oleaut32/typelib.c
===================================================================
RCS file: /var/cvs/wine/dlls/oleaut32/typelib.c,v
retrieving revision 1.144
diff -u -p -r1.144 typelib.c
--- dlls/oleaut32/typelib.c	25 Feb 2005 14:07:57 -0000	1.144
+++ dlls/oleaut32/typelib.c	25 Feb 2005 16:25:42 -0000
@@ -4117,7 +4117,7 @@ static ULONG WINAPI ITypeInfo_fnRelease(
 
     if (ref)   {
       /* We don't release ITypeLib when ref=0 because
-         it means that funtion is called by ITypeLi2_Release */
+         it means that function is called by ITypeLib2_Release */
       ITypeLib2_Release((ITypeLib2*)This->pTypeLib);
     } else   {
       FIXME("destroy child objects\n");
Index: dlls/oleaut32/varformat.c
===================================================================
RCS file: /var/cvs/wine/dlls/oleaut32/varformat.c,v
retrieving revision 1.8
diff -u -p -r1.8 varformat.c
--- dlls/oleaut32/varformat.c	25 Feb 2005 14:07:57 -0000	1.8
+++ dlls/oleaut32/varformat.c	25 Feb 2005 16:59:01 -0000
@@ -94,7 +94,7 @@ static const WCHAR szPercentZeroStar_d[]
  *  characters. Literal characters are copied unmodified to the formatted
  *  output at the position they occupy in the format string. Any character
  *  that is not recognised as a token is treated as a literal. A literal can
- *  also be specified by preceeding it with a backslash character
+ *  also be specified by preceding it with a backslash character
  *  (e.g. "\L\i\t\e\r\a\l") or enclosing it in double quotes.
  *
  *  A user-defined format can have up to 4 sections, depending on the type of
Index: dlls/richedit/reader.c
===================================================================
RCS file: /var/cvs/wine/dlls/richedit/reader.c,v
retrieving revision 1.20
diff -u -p -r1.20 reader.c
--- dlls/richedit/reader.c	14 Feb 2005 21:04:13 -0000	1.20
+++ dlls/richedit/reader.c	25 Feb 2005 10:15:07 -0000
@@ -887,8 +887,8 @@ char	buf[rtfBufSiz];
 
 
 /*
- * Convert a CaracterSetMap (caracter_name, caracter) into
- * this form : array[caracter_ident] = caracter;
+ * Convert a CharSetMap (character_name, character) into
+ * this form : array[character_ident] = character;
  */
 
 int RTFReadCharSetMap(RTF_Info *info, int csId)
Index: dlls/richedit/richedit.c
===================================================================
RCS file: /var/cvs/wine/dlls/richedit/richedit.c,v
retrieving revision 1.40
diff -u -p -r1.40 richedit.c
--- dlls/richedit/richedit.c	24 Feb 2005 17:04:05 -0000	1.40
+++ dlls/richedit/richedit.c	25 Feb 2005 15:58:26 -0000
@@ -149,7 +149,7 @@ static LRESULT WINAPI RICHED32_WindowPro
             newstyle &= ~ES_NUMBER;  /* Reused as ES_DISABLENOSCROLL */
 	    SetWindowLongA(hwnd,GWL_STYLE, newstyle);
 
-            /* Note that SetWindowLongA(hwnd,GWL_STYLE...) doesnt update 
+            /* Note that SetWindowLongA(hwnd,GWL_STYLE...) does not update 
                the style field in the text window as the edit structure is
                not initialized until it processes this message. Therefore
                update the style in the message itself                     */
Index: dlls/shell32/clipboard.c
===================================================================
RCS file: /var/cvs/wine/dlls/shell32/clipboard.c,v
retrieving revision 1.18
diff -u -p -r1.18 clipboard.c
--- dlls/shell32/clipboard.c	18 Jun 2004 00:23:38 -0000	1.18
+++ dlls/shell32/clipboard.c	25 Feb 2005 16:59:11 -0000
@@ -26,7 +26,7 @@
  * - a right mousebutton-copy sets the following formats:
  *  classic:
  *	Shell IDList Array
- *	Prefered Drop Effect
+ *	Preferred Drop Effect
  *	Shell Object Offsets
  *	HDROP
  *	FileName
Index: dlls/shell32/shelllink.c
===================================================================
RCS file: /var/cvs/wine/dlls/shell32/shelllink.c,v
retrieving revision 1.84
diff -u -p -r1.84 shelllink.c
--- dlls/shell32/shelllink.c	25 Feb 2005 16:19:57 -0000	1.84
+++ dlls/shell32/shelllink.c	25 Feb 2005 23:24:52 -0000
@@ -650,7 +650,7 @@ static HRESULT Stream_LoadAdvertiseInfo(
     size = sizeof buffer - sizeof (DWORD);
     if( buffer.size != sizeof buffer )
     {
-        ERR("Ooops.  This structure is different to expected...\n");
+        ERR("Ooops.  This structure is not as expected...\n");
         return E_FAIL;
     }
 
@@ -865,7 +865,7 @@ static HRESULT Stream_WriteString( IStre
  *
  * FIXME: One day we might want to write the network volume information
  *        and the final path.
- *        Figure out how Windows deals with unicode pathes here.
+ *        Figure out how Windows deals with unicode paths here.
  */
 static HRESULT Stream_WriteLocationInfo( IStream* stm, LPCWSTR path,
                                          volume_info *volume )
Index: dlls/shell32/shfldr_fs.c
===================================================================
RCS file: /var/cvs/wine/dlls/shell32/shfldr_fs.c,v
retrieving revision 1.33
diff -u -p -r1.33 shfldr_fs.c
--- dlls/shell32/shfldr_fs.c	2 Mar 2005 10:16:41 -0000	1.33
+++ dlls/shell32/shfldr_fs.c	2 Mar 2005 11:15:46 -0000
@@ -303,7 +303,7 @@ static ULONG WINAPI IShellFolder_fnRelea
  *
  *  If the caller bound File System Bind Data, assume it is the 
  *   find data for the path.
- *  This allows binding of pathes that don't exist.
+ *  This allows binding of paths that don't exist.
  */
 LPITEMIDLIST SHELL32_CreatePidlFromBindCtx(IBindCtx *pbc, LPCWSTR path)
 {
Index: dlls/user/dde/dde_private.h
===================================================================
RCS file: /var/cvs/wine/dlls/user/dde/dde_private.h,v
retrieving revision 1.10
diff -u -p -r1.10 dde_private.h
--- dlls/user/dde/dde_private.h	14 Feb 2005 11:53:15 -0000	1.10
+++ dlls/user/dde/dde_private.h	25 Feb 2005 16:59:26 -0000
@@ -40,7 +40,7 @@
  *      - a popup window (InstanceClass) is created for each instance.
  *      - this window is used to receive all the DDEML events (server registration,
  *	  conversation confirmation...). See the WM_WDML_???? messages for details
- * + when registring a server (DdeNameService) a WDML_SERVER is created
+ * + when registering a server (DdeNameService) a WDML_SERVER is created
  *	- a popup window (ServerNameClass) is created
  * + a conversation is represented by two WDML_CONV structures:
  *	- one on the client side, the other one on the server side
Index: dlls/user/tests/sysparams.c
===================================================================
RCS file: /var/cvs/wine/dlls/user/tests/sysparams.c,v
retrieving revision 1.30
diff -u -p -r1.30 sysparams.c
--- dlls/user/tests/sysparams.c	1 Mar 2005 11:46:11 -0000	1.30
+++ dlls/user/tests/sysparams.c	1 Mar 2005 14:42:50 -0000
@@ -1092,7 +1092,7 @@ static void test_SPI_SETWORKAREA( void )
     /* Modify the work area only minimally as this causes the icons that
      * fall outside it to be moved around thus requiring the user to
      * reposition them manually one by one.
-     * Changing the work area by just one pixel should make this occurence
+     * Changing the work area by just one pixel should make this occurrence
      * reasonably unlikely.
      */
     curr_val.left = old_area.left;
Index: dlls/winedos/vxd.c
===================================================================
RCS file: /var/cvs/wine/dlls/winedos/vxd.c,v
retrieving revision 1.8
diff -u -p -r1.8 vxd.c
--- dlls/winedos/vxd.c	3 Jan 2005 20:04:54 -0000	1.8
+++ dlls/winedos/vxd.c	25 Feb 2005 16:59:50 -0000
@@ -623,7 +623,7 @@ void WINAPI VXD_Win32s( CONTEXT86 *conte
          * and StackLinearToSegmented for the byte sequence '0F 01 04'
          * (this is the opcode of 'sgdt [si]'). We then search backwards
          * from this address for the last occurrence of 'CB' (retf) that marks
-         * the end of the preceeding function. The following byte (which
+         * the end of the preceding function. The following byte (which
          * should now be the first byte of the function we are looking for)
          * will be replaced by 'CB' (retf).
          *
Index: dlls/winmm/wineoss/audio.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/wineoss/audio.c,v
retrieving revision 1.156
diff -u -p -r1.156 audio.c
--- dlls/winmm/wineoss/audio.c	2 Mar 2005 10:12:35 -0000	1.156
+++ dlls/winmm/wineoss/audio.c	2 Mar 2005 11:15:58 -0000
@@ -1322,7 +1322,7 @@ static BOOL wodUpdatePlayedTotal(WINE_WA
     }
 
     /* GETOSPACE is not always accurate when we're down to the last fragment or two;
-    **   we try to accomodate that here by assuming that the dsp is empty by looking
+    **   we try to accommodate that here by assuming that the dsp is empty by looking
     **   at the clock rather than the result of GETOSPACE */
     notplayed = wwo->dwBufferSize - info->bytes;
     if (notplayed > 0 && notplayed < (info->fragsize * 2))
Index: documentation/architecture.sgml
===================================================================
RCS file: /var/cvs/wine/documentation/architecture.sgml,v
retrieving revision 1.15
diff -u -p -r1.15 architecture.sgml
--- documentation/architecture.sgml	26 Oct 2004 22:45:47 -0000	1.15
+++ documentation/architecture.sgml	25 Feb 2005 17:00:25 -0000
@@ -300,7 +300,7 @@
 	    <listitem>
 	      <para>
 		Win 9x roots its architecture in 16 bit systems, while
-		NT is truely a 32 bit system.
+		NT is truly a 32 bit system.
 	      </para>
 	    </listitem>
 	    <listitem>
Index: documentation/getting.sgml
===================================================================
RCS file: /var/cvs/wine/documentation/getting.sgml,v
retrieving revision 1.26
diff -u -p -r1.26 getting.sgml
--- documentation/getting.sgml	14 Feb 2005 11:08:33 -0000	1.26
+++ documentation/getting.sgml	15 Feb 2005 15:32:51 -0000
@@ -5,7 +5,7 @@
       <para>
         Once you've decided that Wine is right for your needs, the next step is 
         to decide how you want to install it.  There are three methods for 
-        installing Wine from Winehq, each with their own advantages and 
+        installing Wine from WineHQ, each with their own advantages and 
         disadvantages.
       </para>
 
Index: include/objbase.h
===================================================================
RCS file: /var/cvs/wine/include/objbase.h,v
retrieving revision 1.52
diff -u -p -r1.52 objbase.h
--- include/objbase.h	6 Dec 2004 11:43:26 -0000	1.52
+++ include/objbase.h	25 Feb 2005 17:07:07 -0000
@@ -98,7 +98,7 @@
  *  - Finally the set of 'IDirect3D_Xxx' macros is a standard set of macros defined to ease access
  *    to the interface methods in C. Unfortunately I don't see any way to avoid having to duplicate
  *    the inherited method definitions there. This time I could have used a trick to use only one
- *    macro whatever the number of parameters but I prefered to have it work the same way as above.
+ *    macro whatever the number of parameters but I preferred to have it work the same way as above.
  *  - You probably have noticed that we don't define the fields we need to actually implement this
  *    interface: reference count, pointer to other resources and miscellaneous fields. That's
  *    because these interfaces are just that: interfaces. They may be implemented more than once, in
Index: programs/cmdlgtst/cmdlgtst.c
===================================================================
RCS file: /var/cvs/wine/programs/cmdlgtst/cmdlgtst.c,v
retrieving revision 1.13
diff -u -p -r1.13 cmdlgtst.c
--- programs/cmdlgtst/cmdlgtst.c	4 May 2004 04:13:06 -0000	1.13
+++ programs/cmdlgtst/cmdlgtst.c	25 Feb 2005 17:01:19 -0000
@@ -728,7 +728,7 @@ LRESULT CALLBACK EXPORT mainWindowDispat
 			MessageBox(hWnd, "Finding next occurrence.", "Findnext", MB_OK);
 		}
 		else if (lpfr->Flags & FR_REPLACE) {
-			MessageBox(hWnd, "Replacing next occurence.", "Replace", MB_OK);
+			MessageBox(hWnd, "Replacing next occurrence.", "Replace", MB_OK);
 		}
 		else if (lpfr->Flags & FR_REPLACEALL) {
 			MessageBox(hWnd, "Replacing all occurrences.", "Replace All", MB_OK);
Index: programs/wcmd/wcmdmain.c
===================================================================
RCS file: /var/cvs/wine/programs/wcmd/wcmdmain.c,v
retrieving revision 1.42
diff -u -p -r1.42 wcmdmain.c
--- programs/wcmd/wcmdmain.c	4 May 2004 04:13:05 -0000	1.42
+++ programs/wcmd/wcmdmain.c	25 Feb 2005 16:45:38 -0000
@@ -107,7 +107,7 @@ int main (int argc, char *argv[])
                   if (*a==' ' || *a=='\t') {
                       has_space=1;
                   } else if (*a=='"') {
-                      /* doubling of '\' preceeding a '"',
+                      /* doubling of '\' preceding a '"',
                        * plus escaping of said '"'
                        */
                       len+=2*bcount+1;
@@ -165,7 +165,7 @@ int main (int argc, char *argv[])
                       if (*a=='"') {
                           int i;
 
-                          /* Double all the '\\' preceeding this '"', plus one */
+                          /* Double all the '\\' preceding this '"', plus one */
                           for (i=0;i<=bcount;i++)
                               *p++='\\';
                           *p++='"';
Index: programs/wineboot/wineboot.c
===================================================================
RCS file: /var/cvs/wine/programs/wineboot/wineboot.c,v
retrieving revision 1.10
diff -u -p -r1.10 wineboot.c
--- programs/wineboot/wineboot.c	22 Dec 2004 18:38:31 -0000	1.10
+++ programs/wineboot/wineboot.c	25 Feb 2005 16:45:24 -0000
@@ -223,7 +223,7 @@ static BOOL pendingRename()
     }
 
     res=RegQueryValueExW( hSession, ValueName, NULL, NULL /* The value type does not really interest us, as it is not
-                                                             truely a REG_MULTI_SZ anyways */,
+                                                             truly a REG_MULTI_SZ anyways */,
             NULL, &dataLength );
     if( res==ERROR_FILE_NOT_FOUND )
     {
Index: programs/winedbg/db_disasm.c
===================================================================
RCS file: /var/cvs/wine/programs/winedbg/db_disasm.c,v
retrieving revision 1.5
diff -u -p -r1.5 db_disasm.c
--- programs/winedbg/db_disasm.c	26 Jan 2005 21:09:04 -0000	1.5
+++ programs/winedbg/db_disasm.c	25 Feb 2005 16:45:12 -0000
@@ -1215,7 +1215,7 @@ static void db_print_address(const char 
 	else {
 
 	    /* try to get destination of indirect call
-	       does not work for segmented adresses */
+	       does not work for segmented addresses */
 	    if (!seg && byref) {
                void*    a1;
                void*    a2;
Index: programs/winevdm/winevdm.c
===================================================================
RCS file: /var/cvs/wine/programs/winevdm/winevdm.c,v
retrieving revision 1.5
diff -u -p -r1.5 winevdm.c
--- programs/winevdm/winevdm.c	27 Sep 2003 02:34:07 -0000	1.5
+++ programs/winevdm/winevdm.c	25 Feb 2005 16:44:59 -0000
@@ -59,7 +59,7 @@ static char *build_command_line( char **
                 if (*a==' ' || *a=='\t') {
                     has_space=1;
                 } else if (*a=='"') {
-                    /* doubling of '\' preceeding a '"',
+                    /* doubling of '\' preceding a '"',
                      * plus escaping of said '"'
                      */
                     len+=2*bcount+1;
@@ -117,7 +117,7 @@ static char *build_command_line( char **
                     if (*a=='"') {
                         int i;
 
-                        /* Double all the '\\' preceeding this '"', plus one */
+                        /* Double all the '\\' preceding this '"', plus one */
                         for (i=0;i<=bcount;i++)
                             *p++='\\';
                         *p++='"';
Index: tools/widl/client.c
===================================================================
RCS file: /var/cvs/wine/tools/widl/client.c,v
retrieving revision 1.2
diff -u -p -r1.2 client.c
--- tools/widl/client.c	23 Feb 2005 21:03:15 -0000	1.2
+++ tools/widl/client.c	25 Feb 2005 16:54:54 -0000
@@ -195,7 +195,7 @@ static void write_function_stubs(type_t 
         fprintf(client, "\n");
 
 
-        /* send/recieve message */
+        /* send/receive message */
         /* print_client("NdrNsSendReceive(\n"); */
         print_client("NdrSendReceive(\n");
         indent++;
Index: tools/winebuild/winebuild.man.in
===================================================================
RCS file: /var/cvs/wine/tools/winebuild/winebuild.man.in,v
retrieving revision 1.28
diff -u -p -r1.28 winebuild.man.in
--- tools/winebuild/winebuild.man.in	8 Oct 2004 21:11:18 -0000	1.28
+++ tools/winebuild/winebuild.man.in	25 Feb 2005 17:05:48 -0000
@@ -356,7 +356,7 @@ specified.
 will be the name available for dynamic
 linking.
 .I data
-can be a decimal number or a hex number preceeded by "0x".  The
+can be a decimal number or a hex number preceded by "0x".  The
 following example defines the variable VariableA at ordinal 2 and
 containing 4 ints:
 .IP
@@ -404,7 +404,7 @@ This declaration defines an ordinal as a
 .I exportname
 will be the name available for dynamic linking.
 .I data
-can be a decimal number or a hex number preceeded by "0x".
+can be a decimal number or a hex number preceded by "0x".
 .SH AUTHORS
 .B winebuild
 has been worked on by many people over the years. The main authors are
Index: tools/winedump/pe.c
===================================================================
RCS file: /var/cvs/wine/tools/winedump/pe.c,v
retrieving revision 1.34
diff -u -p -r1.34 pe.c
--- tools/winedump/pe.c	3 Jan 2005 14:48:49 -0000	1.34
+++ tools/winedump/pe.c	25 Feb 2005 16:44:04 -0000
@@ -355,9 +355,9 @@ static	void	dump_dir_exported_functions(
     printf("  Ordinal base:    %lu\n", exportDir->Base);
     printf("  # of functions:  %lu\n", exportDir->NumberOfFunctions);
     printf("  # of Names:      %lu\n", exportDir->NumberOfNames);
-    printf("Adresses of functions: %08lX\n", exportDir->AddressOfFunctions);
-    printf("Adresses of name ordinals: %08lX\n", exportDir->AddressOfNameOrdinals);
-    printf("Adresses of names: %08lX\n", exportDir->AddressOfNames);
+    printf("Addresses of functions: %08lX\n", exportDir->AddressOfFunctions);
+    printf("Addresses of name ordinals: %08lX\n", exportDir->AddressOfNameOrdinals);
+    printf("Addresses of names: %08lX\n", exportDir->AddressOfNames);
     printf("\n");
     printf("  Entry Pt  Ordn  Name\n");
 
Index: tools/winedump/symbol.c
===================================================================
RCS file: /var/cvs/wine/tools/winedump/symbol.c,v
retrieving revision 1.7
diff -u -p -r1.7 symbol.c
--- tools/winedump/symbol.c	3 Jan 2005 20:16:23 -0000	1.7
+++ tools/winedump/symbol.c	25 Feb 2005 16:43:47 -0000
@@ -46,7 +46,7 @@ static const char *swap_after[] =
 
 
 /* Items containing these substrings are assumed to be wide character
- * strings, unless they contain more that one '*'. A preceeding 'LP'
+ * strings, unless they contain more that one '*'. A preceding 'LP'
  * counts as a '*', so 'LPWCSTR *' is a pointer, not a string
  */
 static const char *wide_strings[] =
@@ -55,7 +55,7 @@ static const char *wide_strings[] =
 };
 
 /* Items containing these substrings are assumed to be wide characters,
- * unless they contain one '*'. A preceeding 'LP' counts as a '*',
+ * unless they contain one '*'. A preceding 'LP' counts as a '*',
  * so 'WCHAR *' is string, while 'LPWCHAR *' is a pointer
  */
 static const char *wide_chars[] =
Index: tools/wrc/parser.y
===================================================================
RCS file: /var/cvs/wine/tools/wrc/parser.y,v
retrieving revision 1.46
diff -u -p -r1.46 parser.y
--- tools/wrc/parser.y	28 Jan 2005 14:01:55 -0000	1.46
+++ tools/wrc/parser.y	25 Feb 2005 16:43:08 -0000
@@ -458,7 +458,7 @@ resources
 	 * for tNL. However, byacc already generates an error upon reading
 	 * the token instead of keeping it as a lookahead. The reason
 	 * lies in the lack of a $default transition in the "expr : xpr . "
-	 * state (currently state 25). It is probably ommitted because tNL
+	 * state (currently state 25). It is probably omitted because tNL
 	 * is a non-terminal and the state contains 2 s/r conflicts. The
 	 * state enumerates all possible transitions instead of using a
 	 * $default transition.


More information about the wine-patches mailing list