diff options
author | sabetts <sabetts> | 2004-10-05 23:29:39 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2004-10-05 23:29:39 +0000 |
commit | d2db60569c8f9f2d3439edc9eee4f9330a317023 (patch) | |
tree | 32b324b0134e644b3480b16c653b0172a102a4ea | |
parent | a2aeb8461a435621330a692998237f259c356640 (diff) | |
download | ratpoison-d2db60569c8f9f2d3439edc9eee4f9330a317023.zip |
* src/actions.c (cmd_source): display an error message if no file is supplied.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/actions.c | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -2,6 +2,7 @@ * src/actions.c (cmd_unsetenv): add an '=' to the string passed to putenv. + (cmd_source): display an error message if no file is supplied. * src/main.c (print_version): update copyright date. diff --git a/src/actions.c b/src/actions.c index 9c97332..143f965 100644 --- a/src/actions.c +++ b/src/actions.c @@ -797,6 +797,12 @@ cmd_source (int interactive, char *data) { FILE *fileptr; + if (data == NULL) + { + message (" source: one argument required "); + return NULL; + } + if ((fileptr = fopen (data, "r")) == NULL) marked_message_printf (0, 0, " source: %s : %s ", data, strerror(errno)); else |