Fix order of reading optional pair values from elisp.
This commit is contained in:
parent
3131f8ac64
commit
4b3fc20c62
@ -520,10 +520,10 @@ fn compare_optional_pair<'e, 's, 'w>(
|
||||
});
|
||||
}
|
||||
let emacs_optval = emacs
|
||||
.first()
|
||||
.get(2)
|
||||
.expect("If-statement proves this will be Some.");
|
||||
let emacs_val = emacs
|
||||
.get(2)
|
||||
.first()
|
||||
.expect("If-statement proves this will be Some.");
|
||||
result.extend(compare_json_value(source, emacs_optval, wasm_optval)?)?;
|
||||
result.extend(compare_json_value(source, emacs_val, wasm_val)?)?;
|
||||
|
Loading…
Reference in New Issue
Block a user