Introduced FDEF and FCUR for speaking arguments to getfolder().
[mmh] / h / mh.h
diff --git a/h/mh.h b/h/mh.h
index 70bfee7..59b5c0f 100644 (file)
--- a/h/mh.h
+++ b/h/mh.h
@@ -257,13 +257,16 @@ extern char *msg_delim;      /*  .. */
 #define TFILE    1        /* path() given a file    */
 #define TSUBCWF  2        /* path() given a @folder */
 
+#define FDEF     0        /* getfolder() want default */
+#define FCUR     1        /* getfolder() want current */
+
 #define OUTPUTLINELEN  72    /* default line length for headers */
 
 /*
 ** miscellaneous macros
 */
 
-#define pidXwait(pid,cp) pidstatus (pidwait (pid, NOTOK), stdout, cp)
+#define pidXwait(pid,cp) pidstatus(pidwait(pid, NOTOK), stdout, cp)
 
 #ifndef max
 # define max(a,b) ((a) > (b) ? (a) : (b))