Skip to content

Commit

Permalink
Merge up
Browse files Browse the repository at this point in the history
  • Loading branch information
prozacchiwawa committed Aug 8, 2023
2 parents 6725447 + dd19af3 commit 5289f93
Show file tree
Hide file tree
Showing 3 changed files with 137 additions and 72 deletions.
4 changes: 2 additions & 2 deletions src/compiler/dialect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ lazy_static! {
DialectDescription {
accepted: AcceptedDialect {
stepping: Some(21),
..Default::default()
..AcceptedDialect::default()
},
content: indoc! {"(
(defconstant *chialisp-version* 21)
Expand Down Expand Up @@ -110,7 +110,7 @@ fn include_dialect(allocator: &Allocator, e: &[NodePtr]) -> Option<AcceptedDiale
// part of a broader narrative, which many requested that sets us on the path of
// being able to include more information in the dialect result.
pub fn detect_modern(allocator: &mut Allocator, sexp: NodePtr) -> AcceptedDialect {
let mut result = Default::default();
let mut result = AcceptedDialect::default();

if let Some(l) = proper_list(allocator, sexp, true) {
for elt in l.iter() {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub mod compiler;
/// - HelperForm - The type of declarations like macros, constants and functions.
pub mod comptypes;
pub mod debug;
/// Dialect definitions.
/// Utilities for chialisp dialect choice
pub mod dialect;
pub mod evaluate;
pub mod frontend;
Expand Down
Loading

0 comments on commit 5289f93

Please sign in to comment.