Minor formatting changes
Showing
2 changed files
with
5 additions
and
4 deletions
... | @@ -71,7 +71,8 @@ _path_is_scheme (mu_record_t record, const char *url, int flags) | ... | @@ -71,7 +71,8 @@ _path_is_scheme (mu_record_t record, const char *url, int flags) |
71 | if (url && record->scheme) | 71 | if (url && record->scheme) |
72 | { | 72 | { |
73 | if (mu_scheme_autodetect_p (url, &path)) | 73 | if (mu_scheme_autodetect_p (url, &path)) |
74 | /* implies if (strncmp (record->scheme, url, strlen(record->scheme)) == 0)*/ | 74 | /* implies: |
75 | if (strncmp (record->scheme, url, strlen(record->scheme)) == 0) */ | ||
75 | { | 76 | { |
76 | struct stat st; | 77 | struct stat st; |
77 | 78 | ... | ... |
... | @@ -185,7 +185,7 @@ static const char *mail_capa[] = { | ... | @@ -185,7 +185,7 @@ static const char *mail_capa[] = { |
185 | }; | 185 | }; |
186 | 186 | ||
187 | static char * | 187 | static char * |
188 | mail_cmdline(void *closure, int cont ARG_UNUSED) | 188 | mail_cmdline (void *closure, int cont ARG_UNUSED) |
189 | { | 189 | { |
190 | char *prompt = (char*) closure; | 190 | char *prompt = (char*) closure; |
191 | char *rc; | 191 | char *rc; |
... | @@ -201,8 +201,8 @@ mail_cmdline(void *closure, int cont ARG_UNUSED) | ... | @@ -201,8 +201,8 @@ mail_cmdline(void *closure, int cont ARG_UNUSED) |
201 | } | 201 | } |
202 | 202 | ||
203 | rc = ml_readline (prompt); | 203 | rc = ml_readline (prompt); |
204 | 204 | ||
205 | if (ml_got_interrupt()) | 205 | if (ml_got_interrupt ()) |
206 | { | 206 | { |
207 | util_error(_("Interrupt")); | 207 | util_error(_("Interrupt")); |
208 | continue; | 208 | continue; | ... | ... |
-
Please register or sign in to post a comment