Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix RT #130260 (“smart” → “curly”)
This seems to be the only place where these quotes are called this way.
  • Loading branch information
AlexDaniel committed Dec 4, 2016
1 parent fa82a1f commit 0ba7733
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Perl6/Grammar.nqp
Expand Up @@ -3574,13 +3574,13 @@ grammar Perl6::Grammar is HLL::Grammar does STD {

proto token quote { <...> }
token quote:sym<apos> { :dba('single quotes') "'" ~ "'" <nibble(self.quote_lang(%*LANG<Quote>, "'", "'", ['q']))> }
token quote:sym<sapos> { :dba('smart single quotes') "‘" ~ "’" <nibble(self.quote_lang(%*LANG<Quote>, "", "", ['q']))> }
token quote:sym<lapos> { :dba('low smart single quotes') "‚" ~ <[’‘]> <nibble(self.quote_lang(%*LANG<Quote>, "", ["",""], ['q']))> }
token quote:sym<hapos> { :dba('high smart single quotes') "’" ~ <[’‘]> <nibble(self.quote_lang(%*LANG<Quote>, "", ["",""], ['q']))> }
token quote:sym<sapos> { :dba('curly single quotes') "‘" ~ "’" <nibble(self.quote_lang(%*LANG<Quote>, "", "", ['q']))> }
token quote:sym<lapos> { :dba('low curly single quotes') "‚" ~ <[’‘]> <nibble(self.quote_lang(%*LANG<Quote>, "", ["",""], ['q']))> }
token quote:sym<hapos> { :dba('high curly single quotes') "’" ~ <[’‘]> <nibble(self.quote_lang(%*LANG<Quote>, "", ["",""], ['q']))> }
token quote:sym<dblq> { :dba('double quotes') '"' ~ '"' <nibble(self.quote_lang(%*LANG<Quote>, '"', '"', ['qq']))> }
token quote:sym<sdblq> { :dba('smart double quotes') '“' ~ '”' <nibble(self.quote_lang(%*LANG<Quote>, '', '', ['qq']))> }
token quote:sym<ldblq> { :dba('low smart double quotes') '„' ~ <[”“]> <nibble(self.quote_lang(%*LANG<Quote>, '', ['',''], ['qq']))> }
token quote:sym<hdblq> { :dba('high smart double quotes') '”' ~ <[”“]> <nibble(self.quote_lang(%*LANG<Quote>, '', ['',''], ['qq']))> }
token quote:sym<sdblq> { :dba('curly double quotes') '“' ~ '”' <nibble(self.quote_lang(%*LANG<Quote>, '', '', ['qq']))> }
token quote:sym<ldblq> { :dba('low curly double quotes') '„' ~ <[”“]> <nibble(self.quote_lang(%*LANG<Quote>, '', ['',''], ['qq']))> }
token quote:sym<hdblq> { :dba('high curly double quotes') '”' ~ <[”“]> <nibble(self.quote_lang(%*LANG<Quote>, '', ['',''], ['qq']))> }
token quote:sym<crnr> { :dba('corner quotes') '「' ~ '」' <nibble(self.quote_lang(%*LANG<Quote>, '', ''))> }
token quote:sym<q> {
:my $qm;
Expand Down

0 comments on commit 0ba7733

Please sign in to comment.