Browse Source

commit before hashmaps

master
FelixBrendel 6 years ago
parent
commit
088127387e
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/built_ins.cpp
  2. +1
    -1
      src/error.cpp

+ 1
- 1
src/built_ins.cpp View File

@@ -174,7 +174,7 @@ proc load_built_ins_into_environment() -> void {
auto label(sfun,__LINE__) = Memory::create_lisp_object_cfunction(special); \
/*NOTE(Felix): for evaluating default args*/ \
push_environment(get_root_environment()); \
try_void create_arguments_from_lambda_list_and_inject(label(params,__LINE__)->value.pair.rest, label(sfun,__LINE__)); \
create_arguments_from_lambda_list_and_inject(label(params,__LINE__)->value.pair.rest, label(sfun,__LINE__)); \
pop_environment(); \
label(sfun,__LINE__)->sourceCodeLocation = new(Source_Code_Location); \
label(sfun,__LINE__)->sourceCodeLocation->file = file_name_built_ins; \


+ 1
- 1
src/error.cpp View File

@@ -16,7 +16,7 @@ proc create_error(const char* c_file_name, int c_file_line, Lisp_Object* type, S

delete_error();
if (Globals::breaking_on_errors) {
// debug_break();
debug_break();
}
// visualize_lisp_machine();



Loading…
Cancel
Save