Il sito funziona meglio con JavaScript.
Home
Esplora
Aiuto
Accedi
Immanuel
/
nnn
Segui
1
Vota
0
Forka
0
Codice
Problemi
0
Pull Requests
0
Rilasci
0
Wiki
Attività
Sfoglia il codice sorgente
Keep last valid state on regex errors
master
lostd
10 anni fa
parent
cacd576240
commit
ab0c9e5921
1 ha cambiato i file
con
7 aggiunte
e
2 eliminazioni
Visualizzazione separata
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-2
noice.c
+ 7
- 2
noice.c
Vedi File
@@ -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)
Write
Preview
Loading…
Annulla
Salva