summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2003-01-30 12:43:30 +0000
committerBruno Haible <bruno@clisp.org>2003-01-30 12:43:30 +0000
commitb0faccc7ef435f9c0713f5369bbfdae16525360b (patch)
tree94e7d96bc031720e6f5f40af00b57aa126a5261a /src
parent3aff1fd64fdbf04ec108e989e342a66f353892c5 (diff)
downloadgperf-b0faccc7ef435f9c0713f5369bbfdae16525360b.tar.gz
Remove newline from default --delimiters.
Diffstat (limited to 'src')
-rw-r--r--src/options.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/options.cc b/src/options.cc
index dd901ed..c38adae 100644
--- a/src/options.cc
+++ b/src/options.cc
@@ -59,7 +59,7 @@ static const char *const DEFAULT_HASH_NAME = "hash";
static const char *const DEFAULT_WORDLIST_NAME = "wordlist";
/* Default delimiters that separate keywords from their attributes. */
-static const char *const DEFAULT_DELIMITERS = ",\n";
+static const char *const DEFAULT_DELIMITERS = ",";
/* Prints program usage to given stream. */
@@ -99,7 +99,7 @@ Options::long_usage (FILE * stream) const
" -e, --delimiters=DELIMITER-LIST\n"
" Allow user to provide a string containing delimiters\n"
" used to separate keywords from their attributes.\n"
- " Default is \",\\n\".\n");
+ " Default is \",\".\n");
fprintf (stream,
" -t, --struct-type Allows the user to include a structured type\n"
" declaration for generated code. Any text before %%%%\n"