aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2020-10-27 19:42:47 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-10-27 19:42:47 +0100
commit30d41ce662e970cf37148b8f3c3f8c0ca03d8696 (patch)
treeb905b4ed1b12aba7f865466f7c8e5820d198d554
parent4111ac76756def09f763b52b5dc9789f1cb21ec4 (diff)
downloadman-pages-30d41ce662e970cf37148b8f3c3f8c0ca03d8696.tar.gz
FIXME_list.sh: Fix broken regexp
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rwxr-xr-xscripts/FIXME_list.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/FIXME_list.sh b/scripts/FIXME_list.sh
index f7acc98803..59ba3c0cb9 100755
--- a/scripts/FIXME_list.sh
+++ b/scripts/FIXME_list.sh
@@ -73,9 +73,9 @@ for dir in "$@"; do
# /.\" FIXME . / ==> do not display this FIXME, unless
# -a command-line option was supplied
- if ($0 ~ /^\.\\\" FIXME \./ )
+ if ($0 ~ /^\.\\" FIXME \./ )
FIXME_type = "hidden"
- else if ($0 ~ /^\.\\\" FIXME *\?/ )
+ else if ($0 ~ /^\.\\" FIXME *\?/ )
FIXME_type = "question"
else
FIXME_type = "normal";
@@ -96,12 +96,12 @@ for dir in "$@"; do
if (getline == 0)
finished = 1;
- if (!($0 ~ /^.\\\"/))
+ if (!($0 ~ /^.\\"/))
finished = 1;
# /.\" .$/ ==> Explicit end of FIXME
- if ($0 ~ /^.\\\" \.$/)
+ if ($0 ~ /^.\\" \.$/)
finished = 1;
} while (!finished);