aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2020-09-30 09:29:59 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-09-30 09:39:05 +0200
commitd8f63a986054e5cded64528dfcc2b529fc22d8be (patch)
tree01739ba9cc8357906d5dad3303ed7a30cccaed09
parentb7a12afe3f932e7fff5d03d2c4fe6570905282cf (diff)
downloadman-pages-d8f63a986054e5cded64528dfcc2b529fc22d8be.tar.gz
man_show_fixme.sh: Fix misquoted double quotes in regexps
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rwxr-xr-xscripts/man_show_fixme.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/man_show_fixme.sh b/scripts/man_show_fixme.sh
index 98e6ce8290..5cc889a3c5 100755
--- a/scripts/man_show_fixme.sh
+++ b/scripts/man_show_fixme.sh
@@ -5,13 +5,13 @@
#
for f in $*; do
cat $f | awk '
- /^\.\\\" *FIXME/ {
+ /^\.\\" *FIXME/ {
if ($0 ~ /.*FIXME *\..*/) {
# FIXMES of the form "FIXME ." are "private" and
# ignored by this script
} else {
sub("FIXME[: ]*", "")
- if ($0 ~ /^\.\\\"[ ]*$/) {
+ if ($0 ~ /^\.\\"[ ]*$/) {
# If the FIXME line contains no additional text after
# "FIXME", then discard the blank line
@@ -31,7 +31,7 @@ for f in $*; do
}
}
- $0 !~ /^\.\\\"/ && fixme == 1 {
+ $0 !~ /^\.\\"/ && fixme == 1 {
fixme = 0
print "T}"
print ".TE"