summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--lib/format.lua4
2 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 1d41c75..ffb4ec8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
APP_NAME=core
PACKAGE=acf-$(APP_NAME)
-VERSION=0.4.22
+VERSION=0.4.21
P=$(PACKAGE)-$(VERSION)
DISTDIR:=$(shell pwd)/$(P)
diff --git a/lib/format.lua b/lib/format.lua
index e2069f0..63b8fec 100644
--- a/lib/format.lua
+++ b/lib/format.lua
@@ -101,10 +101,6 @@ function parse_configfile( input, comment )
local lines = parse_linesandwords(input, comment)
for i,linetable in ipairs(lines) do
- if string.find(linetable[1], "%S=%S") then
- table.insert(linetable, 2, string.match(linetable[1], "=(%S+)"))
- linetable[1] = string.match(linetable[1], "^[^=]+")
- end
config[linetable[1]] = table.concat(linetable, " ", 2) or ""
end
return config