You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/10/30 17:14:22 UTC

svn commit: r1029092 - /subversion/branches/performance/subversion/libsvn_subr/subst.c

Author: danielsh
Date: Sat Oct 30 15:14:22 2010
New Revision: 1029092

URL: http://svn.apache.org/viewvc?rev=1029092&view=rev
Log:
* subversion/libsvn_subr/subst.c
  (eol_unchanged):
    Tweak docstring to clarify that '$' is not an arbitrary character.

Modified:
    subversion/branches/performance/subversion/libsvn_subr/subst.c

Modified: subversion/branches/performance/subversion/libsvn_subr/subst.c
URL: http://svn.apache.org/viewvc/subversion/branches/performance/subversion/libsvn_subr/subst.c?rev=1029092&r1=1029091&r2=1029092&view=diff
==============================================================================
--- subversion/branches/performance/subversion/libsvn_subr/subst.c (original)
+++ subversion/branches/performance/subversion/libsvn_subr/subst.c Sat Oct 30 15:14:22 2010
@@ -850,9 +850,9 @@ create_translation_baton(const char *eol
 
 /* Return TRUE if the EOL starting at BUF matches the eol_str member of B.
  * Be aware of special cases like "\n\r\n" and "\n\n\r". For sequences like
- * "\n$", the result will be FALSE since it is more efficient to handle
- * that special case implicitly in the calling code by exiting the quick
- * scan loop.
+ * "\n$" (an EOL followed by a keyword), the result will be FALSE since it is
+ * more efficient to handle that special case implicitly in the calling code
+ * by exiting the quick scan loop.
  */
 static APR_INLINE svn_boolean_t
 eol_unchanged(struct translation_baton *b,