shithub: choc

Download patch

ref: 0c2b0232b6f56221a07dee088b40d191facc4f0a
parent: cb771394c341904f8b3e8ee55dedc73898ac39f5
author: Simon Howard <[email protected]>
date: Tue Feb 26 17:10:06 EST 2008

Don't sort config file variables alphabetically. Throw an exception for
unknown documentation comments.

Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1093

--- a/man/docgen
+++ b/man/docgen
@@ -61,8 +61,6 @@
     def manpage_output(self):
         result = ".SH CONFIGURATION VARIABLES\n"
 
-        self.variables.sort()
-
         for v in self.variables:
             result += ".TP\n"
             result += v.manpage_output()
@@ -72,8 +70,6 @@
     def plaintext_output(self):
         result = ""
 
-        self.variables.sort()
-
         w = parameter_list_width(self.variables)
 
         for p in self.variables:
@@ -314,6 +310,9 @@
     if match:
         param.name = match.group(1)
         config_file.add_variable(param)
+        return
+
+    raise Exception(param.text)
 
 def process_file(file):