about summary refs log tree commit diff stats
path: root/update_html
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-01-12 22:24:06 -0800
committerKartik Agaram <vc@akkartik.com>2019-01-12 22:24:06 -0800
commit220ac389640887388da2f9276b063e722b0c0f37 (patch)
tree5f53a611a8c10f364e7355e14abef7e235f26be2 /update_html
parente92fa89edfd0236e655cea5d69c47aece40385a2 (diff)
downloadmu-220ac389640887388da2f9276b063e722b0c0f37.tar.gz
4923
We want slice-equal? for length-prefixed strings, not null-terminated "kernel"
strings.
Diffstat (limited to 'update_html')
-rwxr-xr-xupdate_html42
1 files changed, 0 insertions, 42 deletions
diff --git a/update_html b/update_html
index 1a13f655..1dace362 100755
--- a/update_html
+++ b/update_html
@@ -37,40 +37,6 @@ convert_html() {
   mv -i $1.html html/`dirname $1`
 }
 
-ctags -x *.cc  |grep -v "^operator \| member \| variable "  > /tmp/tags
-for f in *.cc
-do
-  process $f
-done
-
-ctags -x [0-9]*.mu  > /tmp/tags
-for f in [0-9]*.mu
-do
-  process $f
-done
-
-for f in [a-zA-Z]*.mu
-do
-  ctags -x [0-9]*.mu $f  > /tmp/tags
-  process $f
-done
-
-( cd edit
-  ctags -x ../[0-9]*.mu *.mu  > /tmp/tags
-)
-for f in edit/*.mu
-do
-  process $f
-done
-
-( cd subx
-  ctags -x *.cc  |grep -v '^. '  > /tmp/tags  # don't hyperlink every 'i' to the integer register variant
-)
-for f in subx/*.cc
-do
-  process $f
-done
-
 for f in subx/examples/*.subx
 do
   ( cd subx/examples
@@ -87,13 +53,5 @@ do
   process $f
 done
 
-for f in subx/apps/*.subx
-do
-  ( cd subx/apps
-    ctags -x ../*.subx `basename $f` > /tmp/tags
-  )
-  process $f
-done
-
 rm /tmp/tags
 ( cd linkify; clean; )