GNOME Bugzilla – Bug 589514
parsing a string like x"\y", x"\\y", x"y\" or x"y\\" in HTML table will confuse doxygen
Last modified: 2009-08-20 10:12:49 UTC
When using HTML-command <table> and setting text like x"\y", x"\\y", x"y\" or x"y\\" inside a td-section will produce broken fields inside the table. Example: /** <table> <tr> <td> y"\q" </td> <td> y"\z" </td> </tr> <tr> <td> y"\\q" </td> <td> y"\\z" </td> </tr> <tr> <td> y"q\" </td> <td> y"z\" </td> </tr> <tr> <td> y"q\\" </td> <td> y"z\\" </td> </tr> </table> */ This occurs in version 1.5.9 as well as in 1.5.8.
Created attachment 139089 [details] example to reproduce the bug Bug_589514_reproduce.zip includes: - configuration file - simple C/C++ source to reproduce the bug
Confirmed. The problem is that y"\q" was tokenized as <y"> + <\q> + <"> instead of <y> + <"\q"> Note that you do rely heavily on the fact that quoted words do not need escaping; i.e. "\q" is ok, but if you want to write just \q, it should be \\q, so doxygen does see it as a command.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.6.0. Please verify if this is indeed the case and reopen the bug if you think it is not fixed (include any additional information that you think can be relevant).