From 54fae92333dc3ba9ff4a069c319a63fcc74e84d0 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 22 Aug 2023 20:56:23 -0700 Subject: genman: move all hashes into do block. * genman.txr (symhash, tagma, tochash): Define in @(do ...) block with defvar for consistency ith other hashes. --- genman.txr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/genman.txr b/genman.txr index c5e1a797..d1593cfb 100644 --- a/genman.txr +++ b/genman.txr @@ -1,14 +1,14 @@ @# This requires a hacked version of man2html @# See here: http://www.kylheku.com/cgit/man -@(bind symhash @(hash :equal-based)) -@(bind tagmap @(hash :equal-based)) -@(bind tochash @(hash :equal-based)) @(bind closedtxt " [+]") @(bind opentxt " [-]") @(bind xpnall "[expand all]") @(bind clpsall "[collapse all]") @(bind closed t) @(do + (defvarl symhash (hash)) + (defvarl tagmap (hash)) + (defvarl tochash (hash)) (defvarl dupe-hashes (hash)) (defvarl dupe-titles (hash)) (defvarl direct (hash)) -- cgit v1.2.3