diff options
author | corvid <devnull@localhost> | 2014-08-04 02:38:26 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-08-04 02:38:26 +0000 |
commit | 21b46c5dd89ee6fdef16ce00c0b745064bb9464d (patch) | |
tree | fbdefa6ca83aa4417bffc33fc86814348590f9a6 /src/table.cc | |
parent | 8130c5ec751f8519af2fd9a74d79a5ad931438bc (diff) |
bring some consistency to the bug messages.
I generally tried to:
- start with a capital letter.
- end with a period.
- put elements inside <>.
- bring element names close to the beginning of the message.
Diffstat (limited to 'src/table.cc')
-rw-r--r-- | src/table.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/table.cc b/src/table.cc index e5871b7f..188becbc 100644 --- a/src/table.cc +++ b/src/table.cc @@ -424,12 +424,12 @@ static void Html_tag_content_table_cell(DilloHtml *html, switch (S_TOP(html)->table_mode) { case DILLO_HTML_TABLE_MODE_NONE: - BUG_MSG("<t%c> outside <table>", + BUG_MSG("<t%c> outside <table>.", (tagsize >=3 && (D_ASCII_TOLOWER(tag[2]) == 'd')) ? 'd' : 'h'); return; case DILLO_HTML_TABLE_MODE_TOP: - BUG_MSG("<t%c> outside <tr>", + BUG_MSG("<t%c> outside <tr>.", (tagsize >=3 && (D_ASCII_TOLOWER(tag[2]) == 'd')) ? 'd' : 'h'); /* a_Dw_table_add_cell takes care that dillo does not crash. */ /* continues */ |