shithub: front

Download patch

ref: ddcfc1de224a58e01bcf47bbb250dc71e796629d
parent: 6ebfbaa82641fcb727858aeb7dd790a3ac10864f
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
 }
--