Commit 405f1869 405f1869acd953facbd323695df1c10b6f8d9ac7 by Sergey Poznyakoff

Bugfixes.

* libmu_scm/mu_guile.c: Include setjmp.h.
* readmsg/readmsg.c (readmsg_parse_opt): Bugfixes. Patch
by Steve Cotton.
1 parent 97983e63
......@@ -17,6 +17,7 @@
Boston, MA 02110-1301 USA */
#include "mu_scm.h"
#include <setjmp.h>
static SCM
eval_catch_body (void *list)
......
......@@ -104,11 +104,11 @@ readmsg_parse_opt (int key, char *arg, struct argp_state *astate)
break;
case 'p':
mu_argp_node_list_new (&lst, "form-feeds", arg);
mu_argp_node_list_new (&lst, "form-feeds", "yes");
break;
case 'a':
mu_argp_node_list_new (&lst, "show-all-match", arg);
mu_argp_node_list_new (&lst, "show-all-match", "yes");
break;
case ARGP_KEY_INIT:
......