aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--builtin.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4fb5f07b..220a8c44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-06-19 Arnold D. Robbins <arnold@skeeve.com>
+
+ * builtin.c (do_isarray): Minor edit to lint warning.
+
2015-06-14 Arnold D. Robbins <arnold@skeeve.com>
* regcomp.c, regex_internal.h, regexec.c: Sync with GLIBC.
diff --git a/builtin.c b/builtin.c
index 02b94ed8..61a4398b 100644
--- a/builtin.c
+++ b/builtin.c
@@ -485,7 +485,7 @@ do_isarray(int nargs)
if (do_lint && ! warned) {
warned = true;
- lintwarn(_("isarray is deprecated. Use typeof() instead"));
+ lintwarn(_("`isarray' is deprecated. Use `typeof' instead"));
}
tmp = POP();