summaryrefslogtreecommitdiff
path: root/usr.bin/mg/def.h
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/mg/def.h')
-rw-r--r--usr.bin/mg/def.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/mg/def.h b/usr.bin/mg/def.h
index 78083f12d39..d4e5016393a 100644
--- a/usr.bin/mg/def.h
+++ b/usr.bin/mg/def.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: def.h,v 1.94 2006/07/25 08:22:32 kjell Exp $ */
+/* $OpenBSD: def.h,v 1.95 2006/07/25 08:27:09 kjell Exp $ */
/* This file is in the public domain. */
@@ -263,6 +263,10 @@ struct buffer {
#define b_bufp b_list.l_p.x_bp
#define b_bname b_list.l_name
+/* Some helper macros, in case they ever change to functions */
+#define bfirstlp(buf) (lforw((buf)->b_headp))
+#define blastlp(buf) (lback((buf)->b_headp))
+
#define BFCHG 0x01 /* Changed. */
#define BFBAK 0x02 /* Need to make a backup. */
#ifdef NOTAB