Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
Immanuel
/
nnn
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Pull requests
0
Versões
0
Wiki
Atividade
Ver código fonte
Keep last valid state on regex errors
master
lostd
10 anos atrás
pai
cacd576240
commit
ab0c9e5921
1 arquivos alterados
com
7 adições
e
2 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+7
-2
noice.c
+ 7
- 2
noice.c
Ver arquivo
@@ -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)
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar