mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Use '"' rather than '\"' in assert.
This commit is contained in:
parent
28b5cd706f
commit
b84f96df34
@ -1,3 +1,8 @@
|
|||||||
|
2000-12-13 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
|
* html-parse.c (advance_declaration): MSVC assert() chokes on
|
||||||
|
'\"'. Use '"' instead.
|
||||||
|
|
||||||
2000-12-11 Hrvoje Niksic <hniksic@arsdigita.com>
|
2000-12-11 Hrvoje Niksic <hniksic@arsdigita.com>
|
||||||
|
|
||||||
* utils.c (xfree_real): Removed.
|
* utils.c (xfree_real): Removed.
|
||||||
|
@ -433,7 +433,7 @@ advance_declaration (const char *beg, const char *end)
|
|||||||
state = AC_S_DEFAULT;
|
state = AC_S_DEFAULT;
|
||||||
break;
|
break;
|
||||||
case AC_S_QUOTE1:
|
case AC_S_QUOTE1:
|
||||||
assert (ch == '\'' || ch == '\"');
|
assert (ch == '\'' || ch == '"');
|
||||||
quote_char = ch; /* cheating -- I really don't feel like
|
quote_char = ch; /* cheating -- I really don't feel like
|
||||||
introducing more different states for
|
introducing more different states for
|
||||||
different quote characters. */
|
different quote characters. */
|
||||||
|
Loading…
Reference in New Issue
Block a user