diff options
author | deva <deva> | 2008-03-18 11:24:44 +0000 |
---|---|---|
committer | deva <deva> | 2008-03-18 11:24:44 +0000 |
commit | 589fd5ffdeaae87410c31c497083e609e7ae1f53 (patch) | |
tree | c8c7eada1049e3ed256248200ec1e76345276e2e /server/src/macro_parser.cc | |
parent | a860976a62d206a1de5aa46f624bcac0036f47c2 (diff) |
Added journal commit code.
Diffstat (limited to 'server/src/macro_parser.cc')
-rw-r--r-- | server/src/macro_parser.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/server/src/macro_parser.cc b/server/src/macro_parser.cc index aeeb84f..7fc9609 100644 --- a/server/src/macro_parser.cc +++ b/server/src/macro_parser.cc @@ -70,6 +70,13 @@ static void start_hndl(void *p, const char *el, const char **attr) // Do something reasonable with them... + if(name == "macro") { + printf("Macro %s %s\n", attributes["name"].c_str(), attributes["resume"].c_str()); + parser->macro->name = attributes["name"]; + parser->macro->format = attributes["resume"]; + // return; + } + if(name == "include") { Macro inc; |