summaryrefslogtreecommitdiff
path: root/sys/kern/subr_clist.c
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
commit9b2e535452929d6f2f798a2c01b23b1f547a0b0f (patch)
tree176f04f674860c7cfae9ac5d2ff4d4e1d73cb2b7 /sys/kern/subr_clist.c
parent44204187ec133a0ab7bd77c8d974ad5afd4d88b4 (diff)
Notes
Diffstat (limited to 'sys/kern/subr_clist.c')
-rw-r--r--sys/kern/subr_clist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_clist.c b/sys/kern/subr_clist.c
index a2615336b7c8..527b4393c94b 100644
--- a/sys/kern/subr_clist.c
+++ b/sys/kern/subr_clist.c
@@ -6,7 +6,7 @@
* of this software, nor does the author assume any responsibility
* for damages incurred with its use.
*
- * $Id: tty_subr.c,v 1.8 1994/10/30 19:43:49 bde Exp $
+ * $Id: tty_subr.c,v 1.9 1994/11/26 19:23:50 bde Exp $
*/
/*
@@ -433,7 +433,7 @@ b_to_q(src, amount, clistp)
*/
numc = min(amount, (char *)(cblockp + 1) - clistp->c_cl);
bcopy(src, clistp->c_cl, numc);
-
+
/*
* Clear quote bits. The following could probably be made into
* a seperate "bitzero()" routine, but why bother?
@@ -548,7 +548,7 @@ unputc(clistp)
cblockp = (struct cblock *)((long)clistp->c_cl & ~CROUND);
/*
- * Set quote flag if this character was quoted.
+ * Set quote flag if this character was quoted.
*/
if (isset(cblockp->c_quote, (u_char *)clistp->c_cl - cblockp->c_info))
chr |= TTY_QUOTE;