We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdf454e commit b94a492Copy full SHA for b94a492
src/reader.rs
@@ -509,21 +509,14 @@ pub fn try_read_quoted(input: &str) -> IResult<&str, Value> {
509
let (rest_input, quoted_form_value) = try_read(form)?;
510
511
// (quote value)
512
- Ok((
513
- rest_input,
514
- vec![
515
- Symbol::intern("quote").to_rc_value(),
516
- quoted_form_value.to_rc_value(),
517
- ]
518
- .into_list()
519
- .to_value(),
520
- ))
+ Ok((rest_input, list_val!(sym!("quote") quoted_form_value)))
521
}
522
523
pub fn try_read(input: &str) -> IResult<&str, Value> {
524
preceded(
525
consume_clojure_whitespaces_parser,
526
alt((
+ try_read_meta,
527
try_read_quoted,
528
try_read_nil,
529
try_read_map,
0 commit comments