diff options
author | Frederic Culot <calcurse@culot.org> | 2007-12-30 16:27:58 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-12-30 16:27:58 +0000 |
commit | 478b2762e61cee2aa2b073e37cfcdaf220692acf (patch) | |
tree | da7092314c4ad526975642d2e82c22fcf50274c9 /src/notify.c | |
parent | 41e7eb0a83f9a6a921ddd54ed89740eaba595354 (diff) | |
download | calcurse-478b2762e61cee2aa2b073e37cfcdaf220692acf.zip |
Ability to attach notes to todo items added
Diffstat (limited to 'src/notify.c')
-rwxr-xr-x | src/notify.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/notify.c b/src/notify.c index b4b60b7..3531a02 100755 --- a/src/notify.c +++ b/src/notify.c @@ -1,4 +1,4 @@ -/* $calcurse: notify.c,v 1.22 2007/10/21 13:41:51 culot Exp $ */ +/* $calcurse: notify.c,v 1.23 2007/12/30 16:27:59 culot Exp $ */ /* * Calcurse - text-based organizer @@ -132,11 +132,13 @@ launch_cmd(char *cmd, char *shell) pid = fork(); if (pid < 0) - ierror(_("FATAL ERROR in launch_cmd: could not fork")); + ierror(_("FATAL ERROR in launch_cmd: could not fork"), + IERROR_WARN); else if (pid == 0) /* Child: launch user defined command */ if (execlp(shell, shell, "-c", cmd, (char *)NULL) < 0) ierror(_("FATAL ERROR in launch_cmd: could not " - "launch user command")); + "launch user command"), + IERROR_WARN); } /* |