summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--lib/Xconfig/various.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index c4bf7b1..dbe192c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- don't use 1280x1024 prefered resolution
(using prefered resolution only when adding explicit gtf modelines)
+- handle new intel driver
- workaround buggy fglrx driver: make dm restart xserver (#29550)
Version 0.15 - 3 April 2007, by Pascal "Pixel" Rigaux
diff --git a/lib/Xconfig/various.pm b/lib/Xconfig/various.pm
index dc74fce..356b48f 100644
--- a/lib/Xconfig/various.pm
+++ b/lib/Xconfig/various.pm
@@ -341,7 +341,7 @@ sub handle_May_Need_ForceBIOS {
$log =~ /Option "May_Need_ForceBIOS" is not used/ or return;
- my @builtin_modes = $log =~ /\*Built-in mode "(\d+x\d+)"/g;
+ my @builtin_modes = $log =~ /\*Built-in mode "(\d+x\d+)"/g or return;
my $resolution = $raw_X->get_resolution;
!member("$resolution->{X}x$resolution->{Y}", @builtin_modes) or return;