mirror of
https://forge.fsky.io/lda/Parsee.git
synced 2026-03-14 00:35:11 +00:00
[ADD/WIP] Editing support XMPP->Matrix
This commit is contained in:
parent
771c3271ad
commit
ae740878c8
13 changed files with 249 additions and 106 deletions
|
|
@ -730,12 +730,14 @@ XMLParseAttQuote(XMLexer *lexer)
|
|||
char *code = NULL;
|
||||
int c2;
|
||||
int p2 = XMLInitialiseBuffer(lexer);
|
||||
while ((c2 = XMLGetc(lexer)) && c2 != EOF)
|
||||
int j = 0;
|
||||
while ((c2 = XMLGetc(lexer)) && c2 != EOF && j < 8)
|
||||
{
|
||||
if (c2 == ';')
|
||||
{
|
||||
break;
|
||||
}
|
||||
j++;
|
||||
}
|
||||
if (c2 != ';')
|
||||
{
|
||||
|
|
@ -775,12 +777,14 @@ XMLParseAttDouble(XMLexer *lexer)
|
|||
char *code = NULL;
|
||||
int c2;
|
||||
int p2 = XMLInitialiseBuffer(lexer);
|
||||
while ((c2 = XMLGetc(lexer)) && c2 != EOF)
|
||||
int j = 0;
|
||||
while ((c2 = XMLGetc(lexer)) && c2 != EOF && j < 8)
|
||||
{
|
||||
if (c2 == ';')
|
||||
{
|
||||
break;
|
||||
}
|
||||
j++;
|
||||
}
|
||||
if (c2 != ';')
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue