gawk

[old] Sed-like interface to the Gopher protocol
Log | Files | Refs | LICENSE

commit d3f300c5c3c5e5fc7019386e77d3b59635484309
parent 757a657ed0eeea667839cd65d46a3f41b19b4ddc
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Wed, 23 Dec 2020 18:14:27 -0800

Swap cgoto and sgoto identifiers

Diffstat:
Mmain.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/main.c b/main.c @@ -528,7 +528,7 @@ getcommand(int c) return cfetch; case 'e': return cextern; - case 'G': + case 'g': return cgoto; default: return NULL; @@ -558,7 +558,7 @@ getstackc(int c) switch (c) { case 'u': return sunwind; - case 'g': + case 'G': return sgoto; case 'q': return sexit;