From d2f94648eb047e7297d22aae6c4c8e6eca585124 Mon Sep 17 00:00:00 2001 From: Jakob Haufe Date: Fri, 8 Dec 2023 09:32:38 +0100 Subject: [PATCH] Fix troff warning .eo/.ec sections seemingly need explicit empty lines using .sp Otherwise, troff complains: troff::535: warning: expected numeric expression, got '\' troff::538: warning: expected numeric expression, got '\' troff::541: warning: expected numeric expression, got '\' --- man/tio.1.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/tio.1.in b/man/tio.1.in index b9cdf1a..776340c 100644 --- a/man/tio.1.in +++ b/man/tio.1.in @@ -532,13 +532,13 @@ Or use the expect command to script an interaction: .nf .eo #!/usr/bin/expect -f - +.sp set timeout -1 log_user 0 - +.sp spawn nc -UN /tmp/tio-socket0 set uart $spawn_id - +.sp send -i $uart "date\n" expect -i $uart "prompt> " send -i $uart "ls -la\n"