diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-04-05 10:36:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-04-05 10:36:40 +0000 |
commit | 8076e536edbcc288ad1666a13b55f4eb2974fc4e (patch) | |
tree | 738d20b3612affc2fa957096eaa37bac05973e9f /perl-install/Xconfigurator.pm | |
parent | ab72206afef20f95422a6c901a6ff8ec04e18429 (diff) | |
download | drakx-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar drakx-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar.gz drakx-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar.bz2 drakx-8076e536edbcc288ad1666a13b55f4eb2974fc4e.tar.xz drakx-8076e536edbcc288ad1666a13b55f4eb2974fc4e.zip |
(write_XF86Config): try to have $_ interpreted (otherwise you get things like ``InputDevice "Stylus$_" "AlwaysCore"'')
Diffstat (limited to 'perl-install/Xconfigurator.pm')
-rw-r--r-- | perl-install/Xconfigurator.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/Xconfigurator.pm b/perl-install/Xconfigurator.pm index 254eb679e..cc884e74b 100644 --- a/perl-install/Xconfigurator.pm +++ b/perl-install/Xconfigurator.pm @@ -1236,11 +1236,11 @@ Section "ServerLayout" InputDevice "Mouse2" "SendCoreEvents" '; foreach (1..@{$o->{wacom}}) { - print G ' + print G qq( InputDevice "Stylus$_" "AlwaysCore" InputDevice "Eraser$_" "AlwaysCore" InputDevice "Cursor$_" "AlwaysCore" -'; +); } print G ' InputDevice "Keyboard1" "CoreKeyboard" |