Skip to content

Commit

Permalink
Final v0.8b commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Edd12321 committed Aug 23, 2023
1 parent c19dbf5 commit 160ea80
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion doc/LICENSE

This file was deleted.

1 change: 0 additions & 1 deletion doc/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/exec.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#if defined USE_HASHCACHE && USE_HASHCACHE == 1
#define RUNCMD { \
if (hctable.find(*argv) != hctable.end())\
*argv = hctable[*argv].data();\
*argv = &hctable[*argv][0]; \
if (!access(*argv, F_OK)) { \
exit(execv(*argv, argv)); \
} else { \
Expand Down
3 changes: 1 addition & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ typedef int Jid;
pid_t zrcpid = getpid();
std::string ret_val;
std::deque<bool> bg_or_fg;
DispatchTable<CodeBlock, WordList> zwlcache;
long ch_mode;
#include "global.hpp"
#include "config.hpp"
Expand All @@ -206,7 +205,7 @@ typedef int Jid;
static bool die (std::string_view );
static inline bool is_number (std::string_view );
WordList glob (std::string_view );
template<typename... Var> std::string zrc_fmt(const char *fmt, Var... args);
template<typename... Var> std::string zrc_fmt(const char *fmt, Var... args);
static std::string eval_stream (std::istream& );
template<typename T> std::string eval(T const& );
// MAIN.CPP
Expand Down

0 comments on commit 160ea80

Please sign in to comment.