diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2010-09-26 14:26:23 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2010-09-26 14:26:23 -0400 |
commit | bf9ea0cbb0562934c45170f94ebfe2ac609a44a8 (patch) | |
tree | f4bde48763d66ed00b176397aee2b3fd6e9fc7f5 /WWW/Library/Implementation/HTMLDTD.c | |
parent | 69a1a751cb798556c786e3ef66d473bf8a88abdc (diff) | |
download | lynx-snapshots-bf9ea0cbb0562934c45170f94ebfe2ac609a44a8.tar.gz |
snapshot of project "lynx", label v2-8-8dev_5e
Diffstat (limited to 'WWW/Library/Implementation/HTMLDTD.c')
-rw-r--r-- | WWW/Library/Implementation/HTMLDTD.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/WWW/Library/Implementation/HTMLDTD.c b/WWW/Library/Implementation/HTMLDTD.c index 78b29c25..833077f2 100644 --- a/WWW/Library/Implementation/HTMLDTD.c +++ b/WWW/Library/Implementation/HTMLDTD.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTMLDTD.c,v 1.56 2008/09/18 22:29:24 tom Exp $ + * $LynxId: HTMLDTD.c,v 1.57 2010/09/25 00:30:56 tom Exp $ * * Our Static DTD for HTML * ----------------------- @@ -236,9 +236,9 @@ void HTSwitchDTD(int new_flag) HTML_ALL_ELEMENTS, (int) sizeof(HTTag))); if (new_flag) - memcpy(tags, tags_table1, HTML_ALL_ELEMENTS * sizeof(HTTag)); + MemCpy(tags, tags_table1, HTML_ALL_ELEMENTS * sizeof(HTTag)); else - memcpy(tags, tags_table0, HTML_ALL_ELEMENTS * sizeof(HTTag)); + MemCpy(tags, tags_table0, HTML_ALL_ELEMENTS * sizeof(HTTag)); } HTTag HTTag_unrecognized = |