joe@tigris.org writes:
>   Log:
>   * svn_types.h: Don't use ## when concatenating string tokens.
Thanks, Joe!  I took another look at K&R, and learned why the ## was
unnecessary for this simple case.
-K
>   Revision  Changes    Path
>   1.63      +2 -2      subversion/subversion/include/svn_types.h
>   
>   http://subversion.tigris.org/source/browse/subversion/subversion/include/svn_types.h.diff?r1=1.62&r2=1.63
>   
>   (In the diff below, changes in quantity of whitespace are not shown.)
>   
>   Index: svn_types.h
>   ===================================================================
>   RCS file: /usr/local/tigris/data/helm/cvs/repository/subversion/subversion/include/svn_types.h,v
>   retrieving revision 1.62
>   retrieving revision 1.63
>   diff -u -b -r1.62 -r1.63
>   --- svn_types.h	2001/05/07 23:52:32	1.62
>   +++ svn_types.h	2001/05/22 18:15:23	1.63
>   @@ -84,7 +84,7 @@
>    
>    
>    /* The fs revision property that stores the commit-log. */
>   -#define SVN_PROP_REVISION_LOG  SVN_PROP_PREFIX ## "log"
>   +#define SVN_PROP_REVISION_LOG  SVN_PROP_PREFIX "log"
>    
>    
>    /* The propname *prefix* that makes a propname a "WC property". 
>   @@ -98,7 +98,7 @@
>       changing them.  The client will also send them back to the RA layer
>       when committing.  (gstein:  does the client need to send them when
>       "reporting" wc state before an update, too?)  */
>   -#define SVN_PROP_WC_PREFIX     SVN_PROP_PREFIX ## "wc:"
>   +#define SVN_PROP_WC_PREFIX     SVN_PROP_PREFIX "wc:"
>    
>    
>    
>   
>   
>   
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: cvs-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: cvs-help@subversion.tigris.org
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Oct 21 14:36:30 2006