#ifdef XXE
#else
    . "-" is used as command flag parm,but "/" may be sometimes allowed
      when the position is not for filename.
      Parm format of value followed,no intermediate space is allowed.
      For ex,"-ofnm" is ok,but "-o fnm" is invalid.
    . Command line parm for Linuxh version only is displayed by
      "xe --h". The format is
      xe [--bcdhmur1] [--7{B|D|C}] [--kfilename] [cps]
        b :Blink when insert key mode.
        c :Clear all line of screen before draw when full screen draw
           case,for ex PgUp.
        d :re-draw only the line updated.
        m :Mono color mode.
        r :Reverse when insert key mode.(default for VT-Console mode)
        u :UnderLine when insert key mode.(default for X-terminal mode)
        1 :draw dbcs line by one write API.
        7 :tarnslation of 0x7f. B:BackSpace D:Delete C:char-0x7f
        k :kaymap file.
           mapping file specify translation Esc string to key combination.

       cps:common parms with other platforms.
           these are displayed by "xe -h".
 (note)
    Under kon(kanjiOnConsole) or kterm,DBCS(japanese) drawing may
    not be stable. So,2 options are prepared for DBCS mode.
    First is to clear whole screen before draw, and second is to write
    line once without DBCS and next write DBCS only.
    DBCS mode is kon(Console mode) and terminal emulator except
    xterm(X mode).
    Default is
    "Clear whole screen at full screen re-write case(ex. PgUp) if
    screen is not splitted. Else draw DBCS line twice".
    Following option modifies default.
    "--c":Clear all line at full screen write even if screen is splitted.
          Another screen may flicker for old CPUs.
    "--d":Draw updated lines only,no whole line clear.
    "--1":Draw DBCS line by one write API.
    Latest gnome-terminal may be ok with --1 and --d.
1