diff --git a/project_files/project_lib.txt b/project_files/project_lib.txt index 2345522..7067643 100644 --- a/project_files/project_lib.txt +++ b/project_files/project_lib.txt @@ -25,7 +25,7 @@ #include static void %_error(char* _err) { - printf("\033[1mprojmr: \033[91m%s\033[0m\n", _err); + printf("\033[1m@: \033[91m%s\033[0m\n", _err); } char* __YDSJS_user_home = NULL; diff --git a/projmr b/projmr index 5fd39a5..b89c01b 100755 Binary files a/projmr and b/projmr differ diff --git a/projmr.h b/projmr.h index 336f696..925fc82 100644 --- a/projmr.h +++ b/projmr.h @@ -205,7 +205,8 @@ static int __create_main(char* name) { ); unsigned int line = 1; while ((c = getc(main_ex)) != EOF) { - if (c != '%' || line == 28) fputc(c, main); + if (c != '%' || line == 28) if (c != '@') fputc(c, main); + else fputs(name, main); else fputs(name, main); if (c == '\n') line ++; }