Add a bugs section to TODO

This commit is contained in:
Michael Forney
2020-04-05 19:57:45 -07:00
parent 2b8f1ee3a6
commit 6902aad435
2 changed files with 48 additions and 31 deletions

31
ed.c
View File

@@ -1,35 +1,4 @@
/* 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 /
* o cat <<EOF | ed
* 0a
* Line
* .
* s# *##
* o cat <<EOF | ed
* 0a
* line
* .
* 1g/^$/p
*/
#include <sys/stat.h>
#include <fcntl.h>
#include <regex.h>