Page MenuHomePhabricator

The string "@_" is displayed without the "_"
Closed, DeclinedPublic

Description

Author: rb-temp-5588

Description:
The string "@_" (Perl code) is displayed without the "_":
http://en.wikipedia.org/wiki/Quicksort_implementations#Perl
(Does not work with neither Firefox nor MSIE)

The page source is:

--------------snip---------------------
<code><pre><nowiki>
sub qsort {

return () if !@_;
return (qsort(grep { $_ < $_[0] } (@_)[1..$#_]), $_[0],
        qsort(grep { $_ >= $_[0] } (@_)[1..$#_]));

}
</nowiki></pre></code>
------------snip-----------------


Version: unspecified
Severity: normal
OS: Windows XP
Platform: PC

Details

Reference
bz3772

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 8:53 PM
bzimport added a project: MediaWiki-Parser.
bzimport set Reference to bz3772.
bzimport added a subscriber: Unknown Object (MLST).

It's there in output. Whether the underscore is visible seems dependent on browser,
font, and font size.

Works for me with HEAD and REL1_5