about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-12 12:15:55 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-12 14:52:07 -0800
commitfa786ea791469364d635b6a5eb877b0c4e3333ce (patch)
tree090da2376f69341f9038e182ccf14c6a1cf91b9f /tools
parentf1eade728695ed3f52ae4e13f0a91dfe769e8567 (diff)
downloadmu-fa786ea791469364d635b6a5eb877b0c4e3333ce.tar.gz
5884
Diffstat (limited to 'tools')
-rwxr-xr-xtools/update_html7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/update_html b/tools/update_html
index 45af0f3f..7efddfe7 100755
--- a/tools/update_html
+++ b/tools/update_html
@@ -38,6 +38,13 @@ convert_html() {
   mv -i $1.html html/`dirname $1`
 }
 
+ctags -x *.cc  |grep -v '^. '  > /tmp/tags  # don't hyperlink every 'i' to the integer register variant
+for f in *.cc
+do
+  test $# -gt 0  &&  test $1 != $f  &&  continue
+  process $f
+done
+
 ctags -x *.subx  > /tmp/tags
 for f in *.subx
 do