diff options
author | grant <grant> | 2004-11-20 06:41:35 +0000 |
---|---|---|
committer | grant <grant> | 2004-11-20 06:41:35 +0000 |
commit | 2a611ab7ec63ef966e66fde7e979e8218a9a623a (patch) | |
tree | a692716f9c656a87166b8784c7576c24c65209f0 /textproc | |
parent | 1e561b8598f6e341f531028597485e72b159e08c (diff) | |
download | pkgsrc-2a611ab7ec63ef966e66fde7e979e8218a9a623a.tar.gz |
sync with src:
no trailing comma at end of enum.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/nbsed/files/defs.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/textproc/nbsed/files/defs.h b/textproc/nbsed/files/defs.h index 5800bca22a1..da1111c50dd 100644 --- a/textproc/nbsed/files/defs.h +++ b/textproc/nbsed/files/defs.h @@ -1,4 +1,4 @@ -/* $NetBSD: defs.h,v 1.5 2004/09/08 08:37:38 jmmv Exp $ */ +/* $NetBSD: defs.h,v 1.6 2004/11/20 06:41:35 grant Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)defs.h 8.1 (Berkeley) 6/6/93 - * $NetBSD: defs.h,v 1.5 2004/09/08 08:37:38 jmmv Exp $ + * $NetBSD: defs.h,v 1.6 2004/11/20 06:41:35 grant Exp $ */ /*- @@ -70,7 +70,7 @@ * SUCH DAMAGE. * * from: @(#)defs.h 8.1 (Berkeley) 6/6/93 - * $NetBSD: defs.h,v 1.5 2004/09/08 08:37:38 jmmv Exp $ + * $NetBSD: defs.h,v 1.6 2004/11/20 06:41:35 grant Exp $ */ /* @@ -79,7 +79,7 @@ enum e_atype { AT_RE, /* Line that match RE */ AT_LINE, /* Specific line */ - AT_LAST, /* Last line */ + AT_LAST /* Last line */ }; /* @@ -161,7 +161,7 @@ struct s_appends { enum e_spflag { APPEND, /* Append to the contents. */ - REPLACE, /* Replace the contents. */ + REPLACE /* Replace the contents. */ }; /* |