Commit 13d957f 1 parent 5b5c02d commit 13d957f Copy full SHA for 13d957f
File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ macro_rules! shorthand (
618
618
// so it's behind a cfg flag.
619
619
#[ cfg( feature = "trace_tokenizer" ) ]
620
620
macro_rules! sh_trace ( ( $me: ident : $( $cmds: tt) * ) => ( {
621
- trace!( " {:s }" , stringify!( $( $cmds) * ) ) ;
621
+ trace!( " {:? }" , stringify!( $( $cmds) * ) ) ;
622
622
shorthand!( $me: expr : $( $cmds) * ) ;
623
623
} ) ) ;
624
624
Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ macro_rules! shorthand (
548
548
// so it's behind a cfg flag.
549
549
#[ cfg( feature = "trace_tokenizer" ) ]
550
550
macro_rules! sh_trace ( ( $me: ident : $( $cmds: tt) * ) => ( {
551
- debug!( " {:s }" , stringify!( $( $cmds) * ) ) ;
551
+ debug!( " {:? }" , stringify!( $( $cmds) * ) ) ;
552
552
shorthand!( $me: expr : $( $cmds) * ) ;
553
553
} ) ) ;
554
554
You can’t perform that action at this time.
0 commit comments