chiark / gitweb /
Take advantage of the new dynamic string macros.
[mLib] / lbuf.h
diff --git a/lbuf.h b/lbuf.h
index 7772885e16f56353515e68fa37a8865a8adf0685..9543d08241c5c020156577ea2f566e60d2161047 100644 (file)
--- a/lbuf.h
+++ b/lbuf.h
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: lbuf.h,v 1.1 1999/05/14 21:01:14 mdw Exp $
+ * $Id: lbuf.h,v 1.2 1999/05/17 20:36:08 mdw Exp $
  *
  * Block-to-line buffering
  *
@@ -30,6 +30,9 @@
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: lbuf.h,v $
+ * Revision 1.2  1999/05/17 20:36:08  mdw
+ * Make the magical constants for the buffer flags uppercase.
+ *
  * Revision 1.1  1999/05/14 21:01:14  mdw
  * Integrated `select' handling bits from the background resolver project.
  *
@@ -105,8 +108,8 @@ typedef struct lbuf {
 } lbuf;
 
 enum {
-  lbuf_cr = 1,                         /* Read a carriage return */
-  lbuf_enable = 2                      /* Buffer is currently enabled */
+  LBUF_CR = 1,                         /* Read a carriage return */
+  LBUF_ENABLE = 2                      /* Buffer is currently enabled */
 };
 
 /*----- Functions provided ------------------------------------------------*/