You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by br...@apache.org on 2014/07/09 02:51:47 UTC

svn commit: r1608974 - /apr/apr/trunk/include/apr_fnmatch.h

Author: brane
Date: Wed Jul  9 00:51:46 2014
New Revision: 1608974

URL: http://svn.apache.org/r1608974
Log:
Fix the documentation for APR_FNMATCH_PERIOD in include/apr_fnmatch.h.

Submitted by: breser

Modified:
    apr/apr/trunk/include/apr_fnmatch.h

Modified: apr/apr/trunk/include/apr_fnmatch.h
URL: http://svn.apache.org/viewvc/apr/apr/trunk/include/apr_fnmatch.h?rev=1608974&r1=1608973&r2=1608974&view=diff
==============================================================================
--- apr/apr/trunk/include/apr_fnmatch.h (original)
+++ apr/apr/trunk/include/apr_fnmatch.h Wed Jul  9 00:51:46 2014
@@ -59,7 +59,7 @@ extern "C" {
  
 #define APR_FNM_NOESCAPE    0x01  /**< Disable backslash escaping. */
 #define APR_FNM_PATHNAME    0x02  /**< Slash must be matched by slash. */
-#define APR_FNM_PERIOD      0x04  /**< Period must be matched by period. */
+#define APR_FNM_PERIOD      0x04  /**< Leading period must be matched by period. */
 #define APR_FNM_CASE_BLIND  0x08  /**< Compare characters case-insensitively. */
 
 /**
@@ -112,7 +112,7 @@ extern "C" {
  * <pre>
  *              APR_FNM_NOESCAPE       Disable backslash escaping
  *              APR_FNM_PATHNAME       Slash must be matched by slash
- *              APR_FNM_PERIOD         Period must be matched by period
+ *              APR_FNM_PERIOD         Leading period must be matched by period
  *              APR_FNM_CASE_BLIND     Compare characters case-insensitively.
  * </pre>
  */