little fix for the basic 4coder
parent
5d9aa6aeb0
commit
89b6fe663d
|
@ -398,6 +398,8 @@ default_keys(Bind_Helper *context){
|
|||
|
||||
#ifndef NO_BINDING
|
||||
|
||||
|
||||
|
||||
extern "C" int
|
||||
get_bindings(void *data, int size){
|
||||
Bind_Helper context_ = begin_bind_helper(data, size);
|
||||
|
|
|
@ -31,6 +31,9 @@ ms_style_verify(String line, int paren_pos){
|
|||
if (match_part(line_part, ") : ")){
|
||||
result = true;
|
||||
}
|
||||
else if (match_part(line_part, "): ")){
|
||||
result = true;
|
||||
}
|
||||
|
||||
return(result);
|
||||
}
|
||||
|
|
4
4ed.cpp
4
4ed.cpp
|
@ -1527,10 +1527,6 @@ App_Init_Sig(app_init){
|
|||
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);
|
||||
|
||||
#ifndef FRED_SUPER
|
||||
models->hooks[hook_start] = 0;
|
||||
#endif
|
||||
|
||||
setup_ui_commands(&models->map_ui, &models->mem.part, global);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
@echo off
|
||||
|
||||
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
|
||||
|
|
|
@ -26,8 +26,8 @@ popd
|
|||
pushd ..\build
|
||||
|
||||
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_casey.cpp
|
||||
call "%CODE_DIR%\buildsuper.bat" ..\code\power\4coder_experiments.cpp
|
||||
REM call "%CODE_DIR%\buildsuper.bat" ..\code\power\4coder_casey.cpp
|
||||
REM call "%CODE_DIR%\buildsuper.bat" ..\4vim\4coder_chronal.cpp
|
||||
if %ERRORLEVEL% neq 0 (set FirstError=1)
|
||||
|
||||
|
|
Loading…
Reference in New Issue