# HG changeset patch # User Rik # Date 1392500161 28800 # Node ID a3611f3e80eb7529df19a2c688756ddc49807f6d # Parent 917f1af7d2e4908360f1e350683d0196ed39fa5c# Parent d6736ea0251a612e73d7f8a7658f75afed9908da maint: Merge away extra head diff -r d6736ea0251a -r a3611f3e80eb libinterp/corefcn/pr-output.cc --- a/libinterp/corefcn/pr-output.cc Sat Feb 15 13:21:33 2014 -0800 +++ b/libinterp/corefcn/pr-output.cc Sat Feb 15 13:36:01 2014 -0800 @@ -3668,6 +3668,38 @@ set_output_prec_and_fw (5, 10); } + else if (arg == "shorte") + { + init_format_state (); + print_e = true; + set_output_prec_and_fw (5, 10); + } + else if (arg == "shortE") + { + init_format_state (); + print_e = true; + print_big_e = true; + set_output_prec_and_fw (5, 10); + } + else if (arg == "shortg") + { + init_format_state (); + print_g = true; + set_output_prec_and_fw (5, 10); + } + else if (arg == "shortG") + { + init_format_state (); + print_g = true; + print_big_e = true; + set_output_prec_and_fw (5, 10); + } + else if (arg == "shortEng") + { + init_format_state (); + print_eng = true; + set_output_prec_and_fw (5, 10); + } else if (arg == "long") { if (--argc > 0) @@ -3713,6 +3745,38 @@ set_output_prec_and_fw (15, 20); } + else if (arg == "longe") + { + init_format_state (); + print_e = true; + set_output_prec_and_fw (15, 20); + } + else if (arg == "longE") + { + init_format_state (); + print_e = true; + print_big_e = true; + set_output_prec_and_fw (15, 20); + } + else if (arg == "longg") + { + init_format_state (); + print_g = true; + set_output_prec_and_fw (15, 20); + } + else if (arg == "longG") + { + init_format_state (); + print_g = true; + print_big_e = true; + set_output_prec_and_fw (15, 20); + } + else if (arg == "longEng") + { + init_format_state (); + print_eng = true; + set_output_prec_and_fw (15, 20); + } else if (arg == "hex") { init_format_state ();