Fix utop -vnum (#231)
The handler for 'utop -vnum' failed to terminate after printing the version number.
This commit is contained in:
parent
d6e873cafc
commit
262539ae26
|
@ -1175,7 +1175,8 @@ let print_version () =
|
|||
exit 0
|
||||
|
||||
let print_version_num () =
|
||||
Printf.printf "%s\n" UTop.version
|
||||
Printf.printf "%s\n" UTop.version;
|
||||
exit 0
|
||||
|
||||
(* Config from command line *)
|
||||
let autoload = ref true
|
||||
|
|
Loading…
Reference in New Issue