summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-09-14 18:59:25 +0300
committerArnold D. Robbins <arnold@skeeve.com>2014-09-14 18:59:25 +0300
commit7796fb7a2e70c0252531bd224889baccacae1c9e (patch)
treefee5433399e72fe75ba6baef1d3798d3db8d721c
parent1684dfc1f5abd1e0093feb586ae428ce42d1a827 (diff)
downloadgawk-7796fb7a2e70c0252531bd224889baccacae1c9e.tar.gz
Update awkgram.c.
-rw-r--r--awkgram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/awkgram.c b/awkgram.c
index 2737762c..6fdac553 100644
--- a/awkgram.c
+++ b/awkgram.c
@@ -8081,7 +8081,7 @@ install_builtins(void)
/* is_identchar --- return true if c can be in an identifier */
/*
- * This can't be:
+ * 9/2014: This can't be:
*
* #define is_identchar(c) (isalnum(c) || (c) == '_')
*