Fixed linux mac check bug

master
Allen Webster 2017-11-21 14:49:04 -05:00
parent 291bfa2e32
commit 8092da597b
1 changed files with 1 additions and 1 deletions

View File

@ -1052,7 +1052,7 @@ CUSTOM_DOC("Deletes the file of the current buffer if 4coder has the appropriate
#if defined(_WIN32)
append(&cmd, "del ");
#elif defined(__linux__) && defined(__APPLE__) && defined(__MACH__)
#elif defined(__linux__) || (defined(__APPLE__) && defined(__MACH__))
append(&cmd, "rm ");
#else
# error no delete file command for this platform