From 0dc96f4f93aef272a04999b341126a399923f34b Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 13 Jan 2018 15:09:49 +0000 Subject: [PATCH] Allow printf '%F' format specifier. ok millert --- usr.bin/jot/jot.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/jot/jot.c b/usr.bin/jot/jot.c index 14070bca1d5..d7584abf327 100644 --- a/usr.bin/jot/jot.c +++ b/usr.bin/jot/jot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: jot.c,v 1.43 2018/01/12 06:22:31 tb Exp $ */ +/* $OpenBSD: jot.c,v 1.44 2018/01/13 15:09:49 tb Exp $ */ /* $NetBSD: jot.c,v 1.3 1994/12/02 20:29:43 pk Exp $ */ /*- @@ -427,6 +427,7 @@ getformat(void) case 'e': case 'E': case 'f': + case 'F': case 'g': case 'G': if (longdata) -- 2.20.1