summaryrefslogtreecommitdiff
path: root/frm
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2004-01-13 15:47:25 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2004-01-13 15:47:25 +0000
commitb951d4cb74d4389e157872ab4087a3820ba125c8 (patch)
tree8f632e64655436e35a3755cd13c2e664999d3808 /frm
parentad9f2c68385eeb7a12f42ce3b2913ffaf9fda2db (diff)
downloadmailutils-b951d4cb74d4389e157872ab4087a3820ba125c8.tar.gz
mailutils-b951d4cb74d4389e157872ab4087a3820ba125c8.tar.bz2
Fixed comments
Diffstat (limited to 'frm')
-rw-r--r--frm/frm.c28
1 files changed, 15 insertions, 13 deletions
diff --git a/frm/frm.c b/frm/frm.c
index 5d0abde5c..b734afb23 100644
--- a/frm/frm.c
+++ b/frm/frm.c
@@ -45,2 +45,3 @@
#include <mailutils/mutil.h>
+#include <mailutils/mime.h>
@@ -101,3 +102,3 @@ abbreviation of those is also accepted.");
-/* Prepares the table for use: computes minimum abbreviation lengths */
+/* Prepares the table for use. Computes minimum abbreviation lengths. */
static void
@@ -207,3 +208,3 @@ parse_opt (int key, char *arg, struct argp_state *state)
be_quiet += 2;
- if (freopen("/dev/null", "w", stdout) == NULL)
+ if (freopen ("/dev/null", "w", stdout) == NULL)
{
@@ -328,3 +329,3 @@ get_personal (header_t hdr, const char *field, char *personal, size_t buflen)
-/* Observable Action this is being call at every message discover. */
+/* Observable action is being called on discovery of each message. */
/* FIXME: The format of the display is poorly done, please correct. */
@@ -353,4 +354,4 @@ action (observer_t o, size_t type)
if (((select_attribute & IS_READ) && (!attribute_is_read (attr)))
- || (select_attribute & IS_NEW) && (!attribute_is_recent (attr))
- || (select_attribute & IS_OLD) && (!attribute_is_seen (attr)))
+ || ((select_attribute & IS_NEW) && (!attribute_is_recent (attr)))
+ || ((select_attribute & IS_OLD) && (!attribute_is_seen (attr))))
break;
@@ -421,7 +422,7 @@ action (observer_t o, size_t type)
/* This is a clone of the elm program call "frm". It is a good example on
- how to use the observable(callback) of libmailutils. "frm" has to
+ how to use the observable(callback) of libmailbox. "frm" has to
be very interactive, it is not possible to call mailbox_messages_count()
and wait for the scanning to finish before displaying. As soon as the scan
- find a new message we want to know about it, this is done by registering
- an observable type MU_MAILBOX_MSG_ADD. The rest is formating code. */
+ finds a new message we want to know about it. This is done by registering
+ an observable type MU_MAILBOX_MSG_ADD. The rest is formatting code. */
@@ -526,3 +527,3 @@ cleanup:
- if(status != 0)
+ if (status != 0)
return 3;
@@ -539,6 +540,7 @@ cleanup:
- /* 0 - selected messages discover.
- 1 - have messages.
- 2 - no message.
- */
+ /* EXIT STATUS
+ Frm returns a zero status ("true") if messages matching `status' are
+ present. Frm returns 1 if no messages matching `status' are present,
+ but there are some messages, returns 2 if there are no messages at
+ all, or returns 3 if an error occurred. */

Return to:

Send suggestions and report system problems to the System administrator.