diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | builtin.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. @@ -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(); |