diff options
| -rw-r--r-- | data/doc/sisu/CHANGELOG_v3 | 2 | ||||
| -rw-r--r-- | lib/sisu/v3/options.rb | 6 | 
2 files changed, 6 insertions, 2 deletions
| diff --git a/data/doc/sisu/CHANGELOG_v3 b/data/doc/sisu/CHANGELOG_v3 index 6dd499b4..fd01812a 100644 --- a/data/doc/sisu/CHANGELOG_v3 +++ b/data/doc/sisu/CHANGELOG_v3 @@ -20,6 +20,8 @@ http://www.jus.uio.no/sisu/pkg/src/sisu_3.0.15.orig.tar.gz    sisu_3.0.15-1.dsc    sisu_3.0.15-1.debian.tar.gz +  * options, default action on running "sisu3 [filename.sst]", fix +    * objects.txt, removed, cleaning  %% 3.0.14.orig.tar.gz (2011-07-26:30/2) diff --git a/lib/sisu/v3/options.rb b/lib/sisu/v3/options.rb index b5771590..6626870f 100644 --- a/lib/sisu/v3/options.rb +++ b/lib/sisu/v3/options.rb @@ -177,8 +177,10 @@ module SiSU_commandline          @lngs = q[:lngs]          if @files.length > 0 \          and @cmd.empty? \ -        and @mod.length==0 #% if no other action called on filename given, default is sisu -0 [filename(s)] configured as flag default -          @cmd=shortcut.cf_0 +        and @mod.length==0 #% if no other action called on filename given, default is sisu --v3 -0 [filename(s)] configured as flag default +          shortcut=SiSU_Env::Info_processing_flag.new +          @mod=['--v3'] +          @cmd=shortcut.cf_0 + 'm'          end          SiSU_Screen::Ansi.new(@cmd,"\tsisu " + @cmd +  ' ' + @mod.join(' ') + ' ' + @files.join(' ') + "\n").print_brown if @cmd =~/[vVM]/        end | 
