linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] printf.3: ffix
@ 2020-03-23  9:00 Jakub Wilk
  2020-03-26  7:49 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Wilk @ 2020-03-23  9:00 UTC (permalink / raw)
  To: Michael Kerrisk; +Cc: linux-man

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
---
 man3/printf.3 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/man3/printf.3 b/man3/printf.3
index c99c796ce..50e136ba6 100644
--- a/man3/printf.3
+++ b/man3/printf.3
@@ -605,7 +605,7 @@ and
 as synonyms, so that one can, for example, write
 .BR llg
 (as a synonym for the standards-compliant
-.RB Lg )
+.BR Lg )
 and
 .BR Ld
 (as a synonym for the standards compliant
-- 
2.26.0.rc2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] printf.3: ffix
  2020-03-23  9:00 [PATCH] printf.3: ffix Jakub Wilk
@ 2020-03-26  7:49 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Kerrisk (man-pages) @ 2020-03-26  7:49 UTC (permalink / raw)
  To: Jakub Wilk; +Cc: mtk.manpages, linux-man

Hello Jakub,

On 3/23/20 10:00 AM, Jakub Wilk wrote:
> Signed-off-by: Jakub Wilk <jwilk@jwilk.net>

Thanks. Patch applied.

Cheers,

Michael

> ---
>  man3/printf.3 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/man3/printf.3 b/man3/printf.3
> index c99c796ce..50e136ba6 100644
> --- a/man3/printf.3
> +++ b/man3/printf.3
> @@ -605,7 +605,7 @@ and
>  as synonyms, so that one can, for example, write
>  .BR llg
>  (as a synonym for the standards-compliant
> -.RB Lg )
> +.BR Lg )
>  and
>  .BR Ld
>  (as a synonym for the standards compliant
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] printf.3: ffix
@ 2022-10-21 18:41 Jakub Wilk
  2022-10-22 21:37 ` Alejandro Colomar
  0 siblings, 1 reply; 4+ messages in thread
From: Jakub Wilk @ 2022-10-21 18:41 UTC (permalink / raw)
  To: Michael Kerrisk, Alejandro Colomar; +Cc: linux-man

Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
---
 man3/printf.3 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man3/printf.3 b/man3/printf.3
index 8f944190b..85b5b4173 100644
--- a/man3/printf.3
+++ b/man3/printf.3
@@ -193,8 +193,8 @@ and
 below) and each conversion specifier asks for the next
 argument (and it is an error if insufficiently many arguments are given).
 One can also specify explicitly which argument is taken,
-at each place where an argument is required, by writing "%m$" instead
-of \(aq%\(aq and "*m$" instead of \(aq*\(aq,
+at each place where an argument is required, by writing "%\fIm\fP$" instead
+of \(aq%\(aq and "*\fIm\fP$" instead of \(aq*\(aq,
 where the decimal integer \fIm\fP denotes
 the position in the argument list of the desired argument, indexed starting
 from 1.
-- 
2.37.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] printf.3: ffix
  2022-10-21 18:41 Jakub Wilk
@ 2022-10-22 21:37 ` Alejandro Colomar
  0 siblings, 0 replies; 4+ messages in thread
From: Alejandro Colomar @ 2022-10-22 21:37 UTC (permalink / raw)
  To: Jakub Wilk; +Cc: linux-man


[-- Attachment #1.1: Type: text/plain, Size: 1138 bytes --]

Hi Jakub,

On 10/21/22 20:41, Jakub Wilk wrote:
> Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
> ---
>   man3/printf.3 | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/man3/printf.3 b/man3/printf.3
> index 8f944190b..85b5b4173 100644
> --- a/man3/printf.3
> +++ b/man3/printf.3
> @@ -193,8 +193,8 @@ and
>   below) and each conversion specifier asks for the next
>   argument (and it is an error if insufficiently many arguments are given).
>   One can also specify explicitly which argument is taken,
> -at each place where an argument is required, by writing "%m$" instead
> -of \(aq%\(aq and "*m$" instead of \(aq*\(aq,
> +at each place where an argument is required, by writing "%\fIm\fP$" instead

I've always had doubts about how those things should be formatted.  Could you 
please explain why you'd format it that way?

Thanks,

Alex

> +of \(aq%\(aq and "*\fIm\fP$" instead of \(aq*\(aq,
>   where the decimal integer \fIm\fP denotes
>   the position in the argument list of the desired argument, indexed starting
>   from 1.

-- 
<http://www.alejandro-colomar.es/>

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-10-22 21:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-23  9:00 [PATCH] printf.3: ffix Jakub Wilk
2020-03-26  7:49 ` Michael Kerrisk (man-pages)
  -- strict thread matches above, loose matches on Subject: below --
2022-10-21 18:41 Jakub Wilk
2022-10-22 21:37 ` Alejandro Colomar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).