]> diplodocus.org Git - nmh/blobdiff - sbr/utils.c
h/prototypes.h: Remove scan_reset_m_getfld_state() prototype.
[nmh] / sbr / utils.c
index aa344b99acab505e6f6820c023d7a803553ee5c1..ef7df4aaad6984fc8f300d6c2d92fa2e2f8c4475 100644 (file)
@@ -17,6 +17,11 @@ extern void remove_registered_files_atexit();
 
 extern char *mhdocdir;
 
+/* plurals gives the letter ess to indicate a plural noun, or an empty
+ * string as plurals+1 for the singular noun.  Used by the PLURALS
+ * macro. */
+const char plurals[] = "s";
+
 /*
  * We allocate space for messages (msgs array)
  * this number of elements at a time.
@@ -533,7 +538,7 @@ nmh_version_changed (int older) {
             context_replace ("Version", "nmh-" VERSION);
         }
 
-        return old_version < current_version  ?  1  :  0;
+        return old_version < current_version;
     }
 
     if (context_version == NULL  ||  strcmp(context_version, "nmh-" VERSION) != 0) {