1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

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("[\\][}]","}")
# #