diff options
Diffstat (limited to 'usr.bin/rcs')
-rw-r--r-- | usr.bin/rcs/rcs.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/rcs/rcs.c b/usr.bin/rcs/rcs.c index f4aca8cd97c..30415b9de17 100644 --- a/usr.bin/rcs/rcs.c +++ b/usr.bin/rcs/rcs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcs.c,v 1.87 2019/01/09 17:55:28 joris Exp $ */ +/* $OpenBSD: rcs.c,v 1.88 2019/01/09 17:57:05 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -1672,6 +1672,10 @@ rcs_expand_keywords(char *rcsfile_in, struct rcs_delta *rdp, BUF *bp, int mode) ++j; buf_append(newbuf, rdp->rd_log + i, j); } + + if (i > 0 && rdp->rd_log[i - 1] != '\n') + buf_putc(newbuf, '\n'); + buf_append(newbuf, line, line2 - line); for (j = 0; c + j < fin; ++j) { if (c[j] != ' ') |