Commit f71aebba by Neil Booth Committed by Neil Booth

* cpplib.c (run_directive): Set pfile->directive.

From-SVN: r42661
parent df9149ee
2001-05-27 Neil Booth <neil@daikokuya.demon.co.uk>
* cpplib.c (run_directive): Set pfile->directive.
2001-05-23 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
* c-tree.texi: Reformat the manual as a single chapter now
......
......@@ -422,7 +422,8 @@ run_directive (pfile, dir_no, type, buf, count)
start_directive (pfile);
pfile->state.prevent_expansion++;
(void) (*dtable[dir_no].handler) (pfile);
pfile->directive = &dtable[dir_no];
(void) (*pfile->directive->handler) (pfile);
pfile->state.prevent_expansion--;
check_eol (pfile);
end_directive (pfile, 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment