Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
Immanuel
/
nnn
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
Keep last valid state on regex errors
master
lostd
hace 10 años
padre
cacd576240
commit
ab0c9e5921
Se han
modificado 1 ficheros
con
7 adiciones
y
2 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+7
-2
noice.c
+ 7
- 2
noice.c
Ver fichero
@@ -749,8 +749,13 @@ moretyping:
/* Check regex errors */
if (tmp != NULL)
r = setfilter(&re, tmp);
if (r != 0 && nowtyping)
goto moretyping;
if (r != 0)
if (nowtyping) {
goto moretyping;
} else {
free(tmp);
goto nochange;
}
/* Copy or reset filter */
free(filter);
if (tmp != NULL)
Escribir
Vista previa
Cargando…
Cancelar
Guardar