Initial working commit with bug in delete command
This commit is contained in:
parent
08aa5d46df
commit
6f15daf1ec
5 changed files with 198 additions and 1 deletions
|
@ -3,6 +3,7 @@ subroutine call_option(option, arg_pos)
|
|||
use opt_disl
|
||||
use opt_group
|
||||
use opt_orient
|
||||
use opt_delete
|
||||
use box
|
||||
implicit none
|
||||
|
||||
|
@ -27,6 +28,8 @@ subroutine call_option(option, arg_pos)
|
|||
arg_pos=arg_pos+1
|
||||
call get_command_argument(arg_pos, box_bc)
|
||||
arg_pos=arg_pos+1
|
||||
case('-delete')
|
||||
call run_delete(arg_pos)
|
||||
case default
|
||||
print *, 'Option ', trim(adjustl(option)), ' is not currently accepted.'
|
||||
stop 3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue