Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/bin/sh Correct a typo in a comment, 08x0 was meant to be 0x8...



details:   https://anonhg.NetBSD.org/src/rev/827f087a080b
branches:  trunk
changeset: 847099:827f087a080b
user:      kre <kre%NetBSD.org@localhost>
date:      Tue Dec 10 09:18:37 2019 +0000

description:
Correct a typo in a comment, 08x0 was meant to be 0x80 (duh!).  NFC.

diffstat:

 bin/sh/parser.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r c91ef5d428a1 -r 827f087a080b bin/sh/parser.c
--- a/bin/sh/parser.c   Tue Dec 10 06:25:50 2019 +0000
+++ b/bin/sh/parser.c   Tue Dec 10 09:18:37 2019 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: parser.c,v 1.168 2019/05/04 02:52:22 kre Exp $ */
+/*     $NetBSD: parser.c,v 1.169 2019/12/10 09:18:37 kre Exp $ */
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)parser.c   8.7 (Berkeley) 5/16/95";
 #else
-__RCSID("$NetBSD: parser.c,v 1.168 2019/05/04 02:52:22 kre Exp $");
+__RCSID("$NetBSD: parser.c,v 1.169 2019/12/10 09:18:37 kre Exp $");
 #endif
 #endif /* not lint */
 
@@ -1749,7 +1749,7 @@
  *
  * The current definition of ISCTL() allows the compiler to
  * optimise away either half, or all, of the test in most of
- * the cases here (0xc0 | anything) cannot be between 08x0 and 0x9f
+ * the cases here (0xc0 | anything) cannot be between 0x80 and 0x9f
  * for example, so there a test is not needed).
  *
  * Which tests can be removed depends upon the actual values



Home | Main Index | Thread Index | Old Index