aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-07-20 14:53:52 -0700
committerJaap Keuter <jaap.keuter@xs4all.nl>2018-06-25 14:22:58 +0000
commitc7f32319307d2ce59eeec1092d7510f33a03dd93 (patch)
tree774e21e3f5a05dcd4a3c009dbbb14b9f15ee0ddd /doc
parent5adac770a807ea3f0c3171d62bf7db2f719803b1 (diff)
downloadwireshark-c7f32319307d2ce59eeec1092d7510f33a03dd93.tar.gz
wireshark-c7f32319307d2ce59eeec1092d7510f33a03dd93.tar.bz2
wireshark-c7f32319307d2ce59eeec1092d7510f33a03dd93.zip
More precise error message.
"Missing newline after '}'" suggests either that the "}" is the line character in the file or that it's followed by a character other than a newline. What it actually appears to mean is "you didn't put a blank line between one author entry and the next author entry". Change-Id: Ic0e4dd02f04680ab84fbfcf1183c911d049ee2d2 Reviewed-on: https://code.wireshark.org/review/22746 Reviewed-by: Guy Harris <guy@alum.mit.edu> (cherry picked from commit fe8508b8b359689c927bb062ee37f79c52930b19) Reviewed-on: https://code.wireshark.org/review/28427 Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl>
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/make-authors-short.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/make-authors-short.pl b/doc/make-authors-short.pl
index 14fdd503ac..df0a335ccf 100755
--- a/doc/make-authors-short.pl
+++ b/doc/make-authors-short.pl
@@ -39,7 +39,7 @@ while (<>) {
} elsif (/\}/) {
$subinfo = 0;
if (($nextline = <>) !~ /^[\s]*$/) {
- print STDERR "Missing newline after '}', found: $nextline"
+ print STDERR "No blank line after '}', found: $nextline"
if $nextline =~ m/\{/;
print $nextline;
}