summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-01-16 22:33:58 +0000
committerJim Meyering <jim@meyering.net>2002-01-16 22:33:58 +0000
commitaafbc6e7fce1db77abfd8d718a6c88d5f146a95b (patch)
treef692ce65c7e84d7994de3771e525f0cd57544110 /lib
parent8efbf4f961beaa3b60cc67c9cca2253e4d62e736 (diff)
downloadcoreutils-aafbc6e7fce1db77abfd8d718a6c88d5f146a95b.tar.xz
(ISDIGIT): Comment fix.
Add three semicolons, each just before a closing brace. Bison (as of version 1.31) no longer papers over that mistake.
Diffstat (limited to 'lib')
-rw-r--r--lib/getdate.y13
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/getdate.y b/lib/getdate.y
index f16a28e3d..289f8121e 100644
--- a/lib/getdate.y
+++ b/lib/getdate.y
@@ -63,10 +63,9 @@
- Its arg may be any int or unsigned int; it need not be an unsigned char.
- It's guaranteed to evaluate its argument exactly once.
- It's typically faster.
- Posix 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
- only '0' through '9' are digits. Prefer ISDIGIT to ISDIGIT_LOCALE unless
- it's important to use the locale's definition of `digit' even when the
- host does not conform to Posix. */
+ POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
+ ISDIGIT_LOCALE unless it's important to use the locale's definition
+ of `digit' even when the host does not conform to POSIX. */
#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
#if STDC_HEADERS || HAVE_STRING_H
@@ -378,19 +377,19 @@ relunit:
| tSNUMBER tDAY_UNIT
{ PC.rel_day += $1.value * $2; }
| tDAY_UNIT
- { PC.rel_day += $1 }
+ { PC.rel_day += $1; }
| tUNUMBER tHOUR_UNIT
{ PC.rel_hour += $1.value * $2; }
| tSNUMBER tHOUR_UNIT
{ PC.rel_hour += $1.value * $2; }
| tHOUR_UNIT
- { PC.rel_hour += $1 }
+ { PC.rel_hour += $1; }
| tUNUMBER tMINUTE_UNIT
{ PC.rel_minutes += $1.value * $2; }
| tSNUMBER tMINUTE_UNIT
{ PC.rel_minutes += $1.value * $2; }
| tMINUTE_UNIT
- { PC.rel_minutes += $1 }
+ { PC.rel_minutes += $1; }
| tUNUMBER tSEC_UNIT
{ PC.rel_seconds += $1.value * $2; }
| tSNUMBER tSEC_UNIT