diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-06-30 11:34:31 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-06-30 12:00:38 +0200 |
commit | 0a9b24b1be678371a661785445878a76b9a873ec (patch) | |
tree | 961a204fb3c19a94a596b09674291dc3ebdfea69 /data | |
parent | 46e40de53c88996a3120207ce8591d40acedc63f (diff) |
Replace spell.program option with a spell.path one.
The new option follows the same format as figlet.path and
fortune.path, and has the full path to the spell program.
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/spell.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/data/rbot/plugins/spell.rb b/data/rbot/plugins/spell.rb index 9ab1deba..9298c286 100644 --- a/data/rbot/plugins/spell.rb +++ b/data/rbot/plugins/spell.rb @@ -4,9 +4,9 @@ # :title: Spell plugin class SpellPlugin < Plugin - Config.register Config::StringValue.new('spell.program', - :default => 'ispell', - :desc => _('Program to use to check spelling')) + Config.register Config::StringValue.new('spell.path', + :default => '/usr/bin/ispell', + :desc => _('Path to the program to use to check spelling')) Config.register Config::StringValue.new('spell.command_line', :default => '%s -a -S', :desc => _('Command line used to call the spell.program. Use %s as a placeholder for the executable name')) |