udbParseLib.awk: comment out some uneeded commands that cause warnings now

This commit is contained in:
Jon Trulson
2021-01-15 19:06:38 -07:00
parent 225522cc6b
commit 007b6fa023

View File

@@ -350,9 +350,10 @@ function tokenize() {
# allow escaping of significant syntax characters # allow escaping of significant syntax characters
# #
gsub("[\\][{]","{") gsub("[\\][{]","{")
gsub("\\:",":") # These cause warnings in newer nawk, and aren't really necessary.
gsub("\\;",";") # gsub("\\:",":")
gsub("\\=","=") # gsub("\\;",";")
# gsub("\=","=")
gsub("[\\][}]","}") gsub("[\\][}]","}")
# #