little fix for the basic 4coder

master
Allen Webster 2016-07-15 19:34:32 -04:00
parent 5d9aa6aeb0
commit 89b6fe663d
5 changed files with 9 additions and 7 deletions

View File

@ -398,6 +398,8 @@ default_keys(Bind_Helper *context){
#ifndef NO_BINDING #ifndef NO_BINDING
extern "C" int extern "C" int
get_bindings(void *data, int size){ get_bindings(void *data, int size){
Bind_Helper context_ = begin_bind_helper(data, size); Bind_Helper context_ = begin_bind_helper(data, size);

View File

@ -31,6 +31,9 @@ ms_style_verify(String line, int paren_pos){
if (match_part(line_part, ") : ")){ if (match_part(line_part, ") : ")){
result = true; result = true;
} }
else if (match_part(line_part, "): ")){
result = true;
}
return(result); return(result);
} }

View File

@ -1527,10 +1527,6 @@ App_Init_Sig(app_init){
if (!did_top) setup_top_commands(&models->map_top, &models->mem.part, global); if (!did_top) setup_top_commands(&models->map_top, &models->mem.part, global);
if (!did_file) setup_file_commands(&models->map_file, &models->mem.part, global); if (!did_file) setup_file_commands(&models->map_file, &models->mem.part, global);
#ifndef FRED_SUPER
models->hooks[hook_start] = 0;
#endif
setup_ui_commands(&models->map_ui, &models->mem.part, global); setup_ui_commands(&models->map_ui, &models->mem.part, global);
} }

View File

@ -1,5 +1,6 @@
@echo off @echo off
REM "build_exp.bat" /Zi REM "build_exp.bat" /Zi
"build_all.bat" /DFRED_SUPER /DFRED_INTERNAL /Zi REM "build_all.bat" /DFRED_SUPER /DFRED_INTERNAL /Zi
"build_all.bat" /DFRED_INTERNAL /Zi
REM "build_all.bat" /O2 /Zi REM "build_all.bat" /O2 /Zi

View File

@ -26,8 +26,8 @@ popd
pushd ..\build pushd ..\build
REM call "%CODE_DIR%\buildsuper.bat" ..\code\4coder_default_bindings.cpp REM call "%CODE_DIR%\buildsuper.bat" ..\code\4coder_default_bindings.cpp
REM call "%CODE_DIR%\buildsuper.bat" ..\code\power\4coder_experiments.cpp call "%CODE_DIR%\buildsuper.bat" ..\code\power\4coder_experiments.cpp
call "%CODE_DIR%\buildsuper.bat" ..\code\power\4coder_casey.cpp REM call "%CODE_DIR%\buildsuper.bat" ..\code\power\4coder_casey.cpp
REM call "%CODE_DIR%\buildsuper.bat" ..\4vim\4coder_chronal.cpp REM call "%CODE_DIR%\buildsuper.bat" ..\4vim\4coder_chronal.cpp
if %ERRORLEVEL% neq 0 (set FirstError=1) if %ERRORLEVEL% neq 0 (set FirstError=1)