summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorAbigail <abigail@abigail.be>2017-01-23 22:29:19 +0100
committerAbigail <abigail@abigail.be>2017-01-23 22:29:19 +0100
commit7cb258c16018b4c963dd48cee7578d26045ff04c (patch)
tree23952cca453d272bf9f094ddb81d3b219b9d8ad3 /toke.c
parente18c4116c82b2027a1e5d4e6b9a7214d60779053 (diff)
downloadperl-7cb258c16018b4c963dd48cee7578d26045ff04c.tar.gz
Be consistent in deprecation messages.
Changed one deprecation message to not use a leading v in the Perl version number, as the other deprecation messages don't have them either.
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toke.c b/toke.c
index 3f13f76a8b..10669de57d 100644
--- a/toke.c
+++ b/toke.c
@@ -10412,7 +10412,7 @@ S_scan_str(pTHX_ char *start, int keep_bracketed_quoted, int keep_delims, int re
const char * non_grapheme_msg = "Use of unassigned code point or"
" non-standalone grapheme for a delimiter"
" will be a fatal error starting in Perl"
- " v5.30";
+ " 5.30";
/* The only non-UTF character that isn't a stand alone grapheme is
* white-space, hence can't be a delimiter. So can skip for non-UTF-8 */
bool check_grapheme = UTF && ckWARN_d(WARN_DEPRECATED);