Explorar el Código

handle_dl_term()

tags/v0.3
Ben Kurtovic hace 11 años
padre
commit
bbcb906f37
Se han modificado 1 ficheros con 4 adiciones y 5 borrados
  1. +4
    -5
      mwparserfromhell/parser/tokenizer.c

+ 4
- 5
mwparserfromhell/parser/tokenizer.c Ver fichero

@@ -2220,11 +2220,10 @@ static int Tokenizer_handle_hr(Tokenizer* self)
*/
static int Tokenizer_handle_dl_term(Tokenizer* self)
{
// self._context ^= contexts.DL_TERM
// if self._read() == ":":
// self._handle_list_marker()
// else:
// self._emit_text("\n")
self->topstack->context ^= LC_DLTERM;
if (Tokenizer_READ(self, 0) == *":")
return Tokenizer_handle_list_marker(self);
return Tokenizer_emit_text(self, *"\n");
}

/*


Cargando…
Cancelar
Guardar