From 48beab120553b2fcdaafcc2741c796d5c5169fcf Mon Sep 17 00:00:00 2001 From: Seo Sanghyeon Date: Mon, 12 May 2014 02:11:30 +0900 Subject: [PATCH] rustdoc: List macros in the sidebar --- src/librustdoc/html/render.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/librustdoc/html/render.rs b/src/librustdoc/html/render.rs index 288e6ebffbaa3..0883d25770ef7 100644 --- a/src/librustdoc/html/render.rs +++ b/src/librustdoc/html/render.rs @@ -1775,6 +1775,7 @@ impl<'a> fmt::Show for Sidebar<'a> { try!(block(fmt.buf, "enum", "Enums", it, cx)); try!(block(fmt.buf, "trait", "Traits", it, cx)); try!(block(fmt.buf, "fn", "Functions", it, cx)); + try!(block(fmt.buf, "macro", "Macros", it, cx)); Ok(()) } }