]> Kevux Git Server - fll/commit
Bugfix: The iki_read is should apply the "--wrap" when using "--substitute".
authorKevin Day <thekevinday@gmail.com>
Sun, 23 Oct 2022 04:03:11 +0000 (23:03 -0500)
committerKevin Day <thekevinday@gmail.com>
Sun, 23 Oct 2022 04:03:11 +0000 (23:03 -0500)
commitbbc7591a040baeca7d19d1d6b644b80ad2e70d01
treecfc4d2f81152292cb7ee34c2e1c6897ac8d6bb3b
parent0bb4f5220553356aa23a968347d8b8f16797b0e6
Bugfix: The iki_read is should apply the "--wrap" when using "--substitute".

Given some iki text such as:
  This is some random:"iki" random:"text".

Run the command:
  # echo 'This is some random:"iki" random:"text".' | iki_read -W random "___" "______" -L -s random text PIZZA -r random tomato

The result that I get is:
  random:"___tomato______"
  random:"PIZZA"

I think the following is better:
  random:"___tomato______"
  random:"___PIZZA______"

This makes more sense to me rather than having substitute not include wrap.
This is a behavioral change that I thought and perhaps still think can be considered a bug.
This "bug" is by design as per the documentation but in retrospect I think this is a mistake in the design and should be considered a bug.
level_3/iki_read/c/iki_read.c
level_3/iki_read/c/private-print.c