about summary refs log tree commit diff
path: root/src/rustdoc/path_pass.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rustdoc/path_pass.rs')
-rw-r--r--src/rustdoc/path_pass.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/rustdoc/path_pass.rs b/src/rustdoc/path_pass.rs
index 737c7419084..76f213b108a 100644
--- a/src/rustdoc/path_pass.rs
+++ b/src/rustdoc/path_pass.rs
@@ -2,7 +2,12 @@
 
 export mk_pass;
 
-fn mk_pass() -> pass { run }
+fn mk_pass() -> pass {
+    {
+        name: "path",
+        f: run
+    }
+}
 
 type ctxt = {
     srv: astsrv::srv,