consistent spacing

This commit is contained in:
TDSSS
2018-11-04 00:54:33 +01:00
committed by GitHub
parent d171e71fea
commit ce3cd42d75
+3 -3
View File
@@ -137,13 +137,13 @@
last_char_group = 3
// ' - . ,
if(39,45,46, 44) //Common name punctuation
if(39, 45, 46, 44) //Common name punctuation
if(!last_char_group) continue
t_out += ascii2text(ascii_char)
last_char_group = 2
// ~ | @ : # $ % & * + !
if(126,124,64,58,35,36,37,38,42,43,33) //Other symbols that we'll allow (mainly for AI)
if(126, 124, 64, 58, 35, 36, 37, 38, 42, 43, 33) //Other symbols that we'll allow (mainly for AI)
if(!last_char_group) continue //suppress at start of string
if(!allow_numbers) continue
t_out += ascii2text(ascii_char)
@@ -551,4 +551,4 @@ proc/checkhtml(var/t)
text = replacetext(text, "<img src = ntlogo.png>", "\[logo\]")
return text
#define string2charlist(string) (splittext(string, regex("(\\x0A|.)")) - splittext(string, ""))
#define string2charlist(string) (splittext(string, regex("(\\x0A|.)")) - splittext(string, ""))