diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-05-23 18:37:09 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-05-23 18:37:09 -0700 |
commit | 009d16bee2ae23593c11c47db1af385e70f3a700 (patch) | |
tree | f02f261e199aa0255c31c129dbcead907e30857c /stream.c | |
parent | 2973674d118749fb7724fff6b6cc640c9e3b145e (diff) | |
download | txr-009d16bee2ae23593c11c47db1af385e70f3a700.tar.gz txr-009d16bee2ae23593c11c47db1af385e70f3a700.tar.bz2 txr-009d16bee2ae23593c11c47db1af385e70f3a700.zip |
Optional argument on remove-path.
* stream.c (remove_path): New parameter, throw_on_error.
(stream_init): Update registratino of remove_path intrinsic.
* stream.h (remove_path): Declaration updated.
* txr.1: Updated remove-path documentation to describe
throw-on-error-p parameter.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -3835,11 +3835,15 @@ static val sh(val command) #error port me! #endif -val remove_path(val path) +val remove_path(val path, val throw_on_error) { - if (w_remove(c_str(path)) < 0) - uw_throwf(file_error_s, lit("trying to remove ~a: ~d/~s"), - path, num(errno), string_utf8(strerror(errno)), nao); + if (w_remove(c_str(path)) < 0) { + if (throw_on_error) + uw_throwf(file_error_s, lit("trying to remove ~a: ~d/~s"), + path, num(errno), string_utf8(strerror(errno)), nao); + return nil; + } + return t; } @@ -3992,7 +3996,7 @@ void stream_init(void) reg_fun(intern(lit("open-process"), user_package), func_n3o(open_process, 2)); reg_fun(intern(lit("sh"), user_package), func_n1(sh)); reg_fun(intern(lit("run"), user_package), func_n2o(run, 1)); - reg_fun(intern(lit("remove-path"), user_package), func_n1(remove_path)); + reg_fun(intern(lit("remove-path"), user_package), func_n2o(remove_path, 1)); reg_fun(intern(lit("rename-path"), user_package), func_n2(rename_path)); reg_fun(intern(lit("open-files"), user_package), func_n2o(open_files, 1)); reg_fun(intern(lit("open-files*"), user_package), func_n2o(open_files_star, 1)); |