After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 585138 - Perl 5.10 syntax highlighting error with operators // and //=
Perl 5.10 syntax highlighting error with operators // and //=
Status: RESOLVED DUPLICATE of bug 562735
Product: gtksourceview
Classification: Platform
Component: Syntax files
2.6.x
Other All
: Normal minor
: ---
Assigned To: GTK Sourceview maintainers
GTK Sourceview maintainers
Depends on:
Blocks:
 
 
Reported: 2009-06-08 10:45 UTC by Valmi Dufour-Lussier
Modified: 2009-06-08 10:58 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Valmi Dufour-Lussier 2009-06-08 10:45:45 UTC
Please describe the problem:
Syntax highlighting doesn't work properly for Perl 5.10 new logical defined-or operators, // and //=.

Steps to reproduce:
Test code:
#!/usr/bin/perl
$x = $y // $z;
...whatever...

Actual results:
It seems that the second slash is mistaken for a regex delimiter. The first slash is coloured as a bareword and the second slash as a delimiter, with everything after the second slash being coloured as an interpolating string, until another slash is found further down the code.

Expected results:
The // or //= should be coloured as operators, and whatever follows shouldn't be considered as a string.

Does this happen every time?
Yes.

Other information:
As a cheap workaround, one can add '#/' at the end of the line containing the offending Perl code. Gedit will not see the '#' and will consider the '/' as a regex delimiter, whereas perl will consider the '#' as a comment delimiter and thus won't see the '/'. The highlighting will still be wrong on this line, but at least it won't mess the rest of the code.
Comment 1 Valmi Dufour-Lussier 2009-06-08 10:58:17 UTC

*** This bug has been marked as a duplicate of 562735 ***