[[[
Followup to r24861: replace a docstring with a brief comment.
* subversion/libsvn_repos/repos.c
* subversion/libsvn_subr/config_file.c
* subversion/tests/libsvn_diff/diff-diff3-test.c
* subversion/tests/libsvn_repos/repos-test.c
(NL) Replace docstring with a brief comment.
Patch by: Peter Samuelson <peter@p12n.org>
]]]
Index: subversion/libsvn_repos/repos.c
===================================================================
--- subversion/libsvn_repos/repos.c (revisione 24888)
+++ subversion/libsvn_repos/repos.c (copia locale)
@@ -31,13 +31,7 @@
#include "repos.h"
-/**
- * A shorter version of APR_EOL_STR; holds the native linefeed for the
- * current platform. E.g., on UNIX systems, this will be "\n", while on
- * Windows, it will be "\r\n". This is defined privately because the
- * macro lacks a namespacing prefix. Used to terminate lines in large
- * multi-line string literals.
- */
+/* Used to terminate lines in large multi-line string literals. */
#define NL APR_EOL_STR
Index: subversion/libsvn_subr/config_file.c
===================================================================
--- subversion/libsvn_subr/config_file.c (revisione 24888)
+++ subversion/libsvn_subr/config_file.c (copia locale)
@@ -33,13 +33,7 @@
#include "svn_private_config.h"
-/**
- * A shorter version of APR_EOL_STR; holds the native linefeed for the
- * current platform. E.g., on UNIX systems, this will be "\n", while on
- * Windows, it will be "\r\n". This is defined privately because the
- * macro lacks a namespacing prefix. Used to terminate lines in large
- * multi-line string literals.
- */
+/* Used to terminate lines in large multi-line string literals. */
#define NL APR_EOL_STR
Index: subversion/tests/libsvn_diff/diff-diff3-test.c
===================================================================
--- subversion/tests/libsvn_diff/diff-diff3-test.c (revisione 24888)
+++ subversion/tests/libsvn_diff/diff-diff3-test.c (copia locale)
@@ -23,13 +23,7 @@
#include "../svn_test.h"
-/**
- * A shorter version of APR_EOL_STR; holds the native linefeed for the
- * current platform. E.g., on UNIX systems, this will be "\n", while on
- * Windows, it will be "\r\n". This is defined privately because the
- * macro lacks a namespacing prefix. Used to terminate lines in large
- * multi-line string literals.
- */
+/* Used to terminate lines in large multi-line string literals. */
#define NL APR_EOL_STR
/* Random number seed. Yes, it's global, just pretend you can't see it. */
Index: subversion/tests/libsvn_repos/repos-test.c
===================================================================
--- subversion/tests/libsvn_repos/repos-test.c (revisione 24888)
+++ subversion/tests/libsvn_repos/repos-test.c (copia locale)
@@ -32,13 +32,7 @@
#include "dir-delta-editor.h"
-/**
- * A shorter version of APR_EOL_STR; holds the native linefeed for the
- * current platform. E.g., on UNIX systems, this will be "\n", while on
- * Windows, it will be "\r\n". This is defined privately because the
- * macro lacks a namespacing prefix. Used to terminate lines in large
- * multi-line string literals.
- */
+/* Used to terminate lines in large multi-line string literals. */
#define NL APR_EOL_STR
Received on Wed May 2 19:15:14 2007