From 13ee56a4a4c3260f6c4742729d6b178361d83338 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Fri, 24 Mar 2023 16:17:20 +0100 Subject: [PATCH] Fix documentation of macro '%-x' --- docs/manual/macros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manual/macros.md b/docs/manual/macros.md index 0a892af094..c0e5e799c7 100644 --- a/docs/manual/macros.md +++ b/docs/manual/macros.md @@ -38,7 +38,7 @@ macros are available: %* all arguments (unlike shell, not including any processed flags) %** all arguments (including any processed flags) %# the number of arguments - %{-f} if present at invocation, the flag f itself + %{-f} if present at invocation, the flag f itself (including the argument) %{-f*} if present at invocation, the argument to flag f %1, %2 the arguments themselves (after getopt(3) processing) ```