You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by gs...@apache.org on 2012/05/05 00:51:45 UTC

svn commit: r1334245 - /subversion/trunk/notes/ev2-callbacks-template.c

Author: gstein
Date: Fri May  4 22:51:44 2012
New Revision: 1334245

URL: http://svn.apache.org/viewvc?rev=1334245&view=rev
Log:
Update the Ev2 template file. Add note about ctags (suggested by danielsh)

* notes/ev2-callbacks-template.c:
  (alter_directory_cb): add CHILDREN parameter

Modified:
    subversion/trunk/notes/ev2-callbacks-template.c

Modified: subversion/trunk/notes/ev2-callbacks-template.c
URL: http://svn.apache.org/viewvc/subversion/trunk/notes/ev2-callbacks-template.c?rev=1334245&r1=1334244&r2=1334245&view=diff
==============================================================================
--- subversion/trunk/notes/ev2-callbacks-template.c (original)
+++ subversion/trunk/notes/ev2-callbacks-template.c Fri May  4 22:51:44 2012
@@ -1,4 +1,7 @@
-/* Use this file to quickly copy/paste handlers for all Ev2 callbacks  */
+/* Use this file to quickly copy/paste handlers for all Ev2 callbacks.
+
+   Please prefix each function to distinguish them from the template,
+   for improved ctags behavior.  */
 
 #define UNUSED(x) ((void)(x))
 
@@ -68,6 +71,7 @@ static svn_error_t *
 alter_directory_cb(void *baton,
                    const char *relpath,
                    svn_revnum_t revision,
+                   const apr_array_header_t *children,
                    apr_hash_t *props,
                    apr_pool_t *scratch_pool)
 {