git: 9front

Download patch

ref: 8451e4bd6efeb79fed23867d8dc9cb7ff0218a38
parent: f8e4c22ece73ff1c2b1c4f76d4f840cbdb490685
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Oct 5 11:20:27 EDT 2024

doctype: fix custom options (thanks sirjofri)

we need to allow '$1' to expand in order to
grow the list of options.

--- a/rc/bin/doctype
+++ b/rc/bin/doctype
@@ -21,7 +21,7 @@
 		dev=-T$2
 		shift
 	case -*
-		opt=$opt' $1'
+		opt=$opt' '$1
 	}
 	shift
 }
--