annotate TODO @ 204:bdc672634010

Fix markup typo (-Fl instead of .Fl)
author David A. Holland
date Thu, 24 Aug 2017 12:34:41 -0400
parents 6947cd2cde79
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
23
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
1 not implemented:
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
2 - mode.input_allow_dollars.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
3 - column counts do not take tabstops into account.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
4 - mode.output_linenumbers.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
5 - mode.do_depend.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
6 - mode.do_macrolist.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
7 - mode.do_trace.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
8 - warns.endiflabels. (they cause errors)
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
9 - warns.unused.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
10 - the -iremap option.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
11 - $CPP_RESTRICTED
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
12 - other environment variables
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
13
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
14 tidy up:
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
15 - get rid of inlinedefs.h
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
16 - use of places in and below macro.c is pretty bogus.
fb83c2df2268 notes for later.
David A. Holland
parents:
diff changeset
17 - macro code should be reworked.
156
e8f7ae63844f place_changefile() needs to be improved
David A. Holland
parents: 146
diff changeset
18 - place_changefile is manky and wastes memory. Also, in an ideal
e8f7ae63844f place_changefile() needs to be improved
David A. Holland
parents: 146
diff changeset
19 world we'd remember the place #line changed the name and refer
e8f7ae63844f place_changefile() needs to be improved
David A. Holland
parents: 146
diff changeset
20 to it when printing errors.
32
b81ddd969691 add some TODO items
David A. Holland
parents: 23
diff changeset
21
b81ddd969691 add some TODO items
David A. Holland
parents: 23
diff changeset
22 fix:
b81ddd969691 add some TODO items
David A. Holland
parents: 23
diff changeset
23 - "#if 0 && 1/0" should not crash; fix eval method.
146
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
24 - quote characters and comment delimiters that are emitted by
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
25 macros are not recognized. See:
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
26 t34 (should produce a quote and FOO Q)
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
27 t35 (similarly, this test may be redundant once it's fixed)
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
28 t36 (C(3) should produce nothing)
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
29 t37 (BC foo EC should produce nothing)
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
30 Joerg says comments like in t36 should be stripped exactly
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
31 twice, once when the macro is defined and again when it's
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
32 expanded. Note that gcc's cpp -traditional is getting t37
15f51ed08ecf Add more tests for some degenerate cases we don't handle right.
David A. Holland
parents: 145
diff changeset
33 wrong, and it gets t36 wrong with -C.
185
16b4451e34b8 Add the ability to output line numbers, sort of.
David A. Holland
parents: 180
diff changeset
34 - remove the intentionally undocumented -p option and generate
190
6947cd2cde79 another note for later
David A. Holland
parents: 187
diff changeset
35 proper linenumber output. (also, in this code what happens if
6947cd2cde79 another note for later
David A. Holland
parents: 187
diff changeset
36 a comment spans files? I bet currently it will emit the line
6947cd2cde79 another note for later
David A. Holland
parents: 187
diff changeset
37 number into the comment.)