Skip to content

Commit 4003265

Browse files
committed
Fix tracing macro definition.
1 parent 13d957f commit 4003265

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

html5ever/src/tokenizer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ macro_rules! shorthand (
619619
#[cfg(feature = "trace_tokenizer")]
620620
macro_rules! sh_trace ( ( $me:ident : $($cmds:tt)* ) => ({
621621
trace!(" {:?}", stringify!($($cmds)*));
622-
shorthand!($me:expr : $($cmds)*);
622+
shorthand!($me:ident : $($cmds)*);
623623
}));
624624

625625
#[cfg(not(feature = "trace_tokenizer"))]

0 commit comments

Comments
 (0)