mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-10 22:20:51 +00:00
11 lines
292 B
Perl
11 lines
292 B
Perl
![]() |
# Test file for Bug#23992
|
||
|
#
|
||
|
# The "||" case is directly from the report,
|
||
|
# the "&&" case has been added for symmetry.
|
||
|
|
||
|
s/LEFT/L/g || s/RIGHT/R/g || s/aVALUE\D+//g;
|
||
|
s/LEFT/L/g||s/RIGHT/R/g||s/aVALUE\D+//g;
|
||
|
|
||
|
s/LEFT/L/g && s/RIGHT/R/g && s/aVALUE\D+//g;
|
||
|
s/LEFT/L/g&&s/RIGHT/R/g&&s/aVALUE\D+//g;
|