Commit 4fcc6b02 authored by Federico G. Schwindt's avatar Federico G. Schwindt Committed by Lasse Karstensen

Use `all' for vars marked as all

Previously it said `vcl_all' which doesn't exist.  Minor cosmetics while
I'm here.
parent ffd37357
...@@ -1316,6 +1316,8 @@ def rst_where(fo, h, l): ...@@ -1316,6 +1316,8 @@ def rst_where(fo, h, l):
ll.append(j) ll.append(j)
elif j == "backend": elif j == "backend":
ll.append(j) ll.append(j)
elif j == "all":
ll.append(j)
else: else:
ll.append("vcl_" + j) ll.append("vcl_" + j)
for j in ll: for j in ll:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment