File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -4285,6 +4285,10 @@ grammar Q is STD {
4285
4285
token backslash :e { <sym > }
4286
4286
token backslash :f { <sym > }
4287
4287
token backslash :n { <sym > }
4288
+ token backslash :N {
4289
+ <sym >
4290
+ [ <? before '{' > <.worryobs (' \N{...}' , ' \c[...]' )> ]?
4291
+ }
4288
4292
token backslash :o { :dba ('octal character' ) <sym > [ <octint > | '[' ~ ']' <octints > ] }
4289
4293
token backslash :r { <sym > }
4290
4294
token backslash :t { <sym > }
@@ -5116,7 +5120,11 @@ grammar Regex is STD {
5116
5120
token backslash :e { :i <sym > <.SIGOK > }
5117
5121
token backslash :f { :i <sym > <.SIGOK > }
5118
5122
token backslash :h { :i <sym > <.SIGOK > }
5119
- token backslash :n { :i <sym > <.SIGOK > }
5123
+ token backslash :n { <sym > <.SIGOK > }
5124
+ token backslash :N {
5125
+ <sym > <.SIGOK >
5126
+ [ <? before '{' > <.worryobs (' \N{...}' , ' \c[...], or disambiguate with whitespace' )> ]?
5127
+ }
5120
5128
token backslash :o { :i :dba ('octal character' ) <sym > [ <octint > | '[' ~ ']' <octints > ] <.SIGOK > }
5121
5129
token backslash :p {
5122
5130
:my $ s ;
You can’t perform that action at this time.
0 commit comments