sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 18f6c5e0142d09ed1c104b7dad96d17ce89820d4
parent ece6569297d216797e7c0a4a0b4ecbd7b5f1f6f0
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun,  4 Mar 2018 20:17:54 +0100

Add TODO

Diffstat:
Med.c | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/ed.c b/ed.c @@ -1,4 +1,25 @@ /* See LICENSE file for copyright and license details. */ + +/* + * TODO: Multi-line commands don't work in global commands: + * o g/^line/a \ + * line1 + * . + * o Signal handling is broken + * o cat <<EOF | ed + * 0a + * int radix = 16; + * int Pflag; + * int Aflag; + * int vflag; + * int gflag; + * int uflag; + * int arflag; + * + * . + * ?radix?;/^$/-s/^/static / + */ + #include <sys/stat.h> #include <fcntl.h> #include <regex.h>