From c3034bf88f1ac7da445d22ec32b8dd5773b02305 Mon Sep 17 00:00:00 2001 From: gc Date: Mon, 26 Dec 2005 17:47:46 +0000 Subject: [PATCH] keep 10 instead of 5 recently opened files --- bin/booh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/booh b/bin/booh index 830ddcd..969b3ca 100755 --- a/bin/booh +++ b/bin/booh @@ -151,8 +151,8 @@ Problem was: '%s' is not an executable file.") % browser_binary), { :pos_centere end def write_config - if $config['last-opens'] && $config['last-opens'].size > 5 - $config['last-opens'] = $config['last-opens'][-5, 5] + if $config['last-opens'] && $config['last-opens'].size > 10 + $config['last-opens'] = $config['last-opens'][-10, 10] end ios = File.open($config_file, "w") -- 2.30.4