From 7670161ca4caa598a0dd6b15e666d127a544df6b Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Wed, 11 Aug 2021 19:25:27 -0700 Subject: [PATCH] . --- tools/update_html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tools/update_html b/tools/update_html index a938cb03..42d977ff 100755 --- a/tools/update_html +++ b/tools/update_html @@ -64,6 +64,15 @@ do process $f done +( cd browse-slack + ctags -x ../boot.subx ../[0-9]*.subx ../[0-9]*.mu *.mu > /tmp/tags +) +for f in browse-slack/*.mu +do + test $# -gt 0 && test $1 != browse-slack/$f && continue + process $f +done + ( cd linux ctags -x [0-9]*.subx [0-9]*.mu > /tmp/tags )