diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2017-10-17 23:50:45 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2017-10-17 23:50:45 -0700 |
commit | 15cd825deef5811f0c5b7a98846d9e9a51991025 (patch) | |
tree | a255cb878751c047a140f84ac6a0d86273f20dc6 /update_html | |
parent | 6a65ec3d91c1e01b36b22797813a716b4a27f004 (diff) | |
download | mu-15cd825deef5811f0c5b7a98846d9e9a51991025.tar.gz |
4077
Stop hyperlinking every `i` in subx html files to the integer register union.
Diffstat (limited to 'update_html')
-rwxr-xr-x | update_html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update_html b/update_html index c1a79ed0..0717a979 100755 --- a/update_html +++ b/update_html @@ -92,7 +92,7 @@ process() { process $f done ( cd subx - ctags -x *.cc > /tmp/tags + ctags -x *.cc |grep -v '^. ' > /tmp/tags # don't hyperlink every 'i' to the integer register variant ) linkify/linkify /tmp/tags html/subx/*.html for f in html/subx/*.cc.html |