mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-09 05:30:50 +00:00

* lisp/progmodes/perl-mode.el (perl-syntax-propertize-function): Add new rule to detect a backslash operator. (Bug#11996) * test/lisp/progmodes/cperl-mode-tests.el (cperl-test-bug-11996): New test. * test/lisp/progmodes/cperl-mode-resources/cperl-bug-11996.pl: New file.
8 lines
200 B
Raku
8 lines
200 B
Raku
{
|
|
my @zzzz=(\%seen_couchrequsts, \%seen_people );
|
|
my @zzzz=\(%seen_couchrequsts, %seen_people );
|
|
my @zzzz=(\%seen_couchrequsts, \%seen_people );
|
|
}
|
|
|
|
print "\"Watch out\"";
|
|
$ref = \"howdy";
|