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 @@ ...@@ -17,6 +17,7 @@
17 Boston, MA 02110-1301 USA */ 17 Boston, MA 02110-1301 USA */
18 18
19 #include "mu_scm.h" 19 #include "mu_scm.h"
20 #include <setjmp.h>
20 21
21 static SCM 22 static SCM
22 eval_catch_body (void *list) 23 eval_catch_body (void *list)
......
...@@ -104,11 +104,11 @@ readmsg_parse_opt (int key, char *arg, struct argp_state *astate) ...@@ -104,11 +104,11 @@ readmsg_parse_opt (int key, char *arg, struct argp_state *astate)
104 break; 104 break;
105 105
106 case 'p': 106 case 'p':
107 mu_argp_node_list_new (&lst, "form-feeds", arg); 107 mu_argp_node_list_new (&lst, "form-feeds", "yes");
108 break; 108 break;
109 109
110 case 'a': 110 case 'a':
111 mu_argp_node_list_new (&lst, "show-all-match", arg); 111 mu_argp_node_list_new (&lst, "show-all-match", "yes");
112 break; 112 break;
113 113
114 case ARGP_KEY_INIT: 114 case ARGP_KEY_INIT:
......