{ table mansfn_directive_list type=command    ..
{   section_name=oss$job_paged_literal scope=local
{ command name=(define_application_name_switch, defans)    ..
{   processor=cmd_define_application_switch    call_method=local      ..
{   availability=advertised
{ command name=(define_destination_group, defdg)    ..
{   processor=cmd_define_destination_group     call_method=local      ..
{   availability=advertised
{ command name=(define_destination_name_switch, defdns)    ..
{   processor=cmd_define_dest_name_switch    call_method=local      ..
{   availability=advertised
{ command name=(define_source_name_switch, defsns)    ..
{   processor=cmd_define_source_name_switch    call_method=local      ..
{   availability=advertised
{ command name=(quit, qui)   processor=cmd_quit_sf_directive    ..
{   call_method=local    availability=advertised
{ tablend

?? PUSH (LISTEXT := ON) ??
VAR
  mansfn_directive_list: [STATIC, READ, oss$job_paged_literal]
      ^clt$command_table := ^mansfn_directive_list_entries,

  mansfn_directive_list_entries: [STATIC, READ, oss$job_paged_literal]
      array [1 .. 10] of  clt$command_table_entry := [
  {} ['DEFANS                         ', clc$abbreviation_entry,
        clc$advertised_entry, 1, clc$automatically_log, clc$linked_call,
        ^cmd_define_application_switch],
  {} ['DEFDG                          ', clc$abbreviation_entry,
        clc$advertised_entry, 2, clc$automatically_log, clc$linked_call,
        ^cmd_define_destination_group],
  {} ['DEFDNS                         ', clc$abbreviation_entry,
        clc$advertised_entry, 3, clc$automatically_log, clc$linked_call,
        ^cmd_define_dest_name_switch],
  {} ['DEFINE_APPLICATION_NAME_SWITCH ', clc$nominal_entry,
        clc$advertised_entry, 1, clc$automatically_log, clc$linked_call,
        ^cmd_define_application_switch],
  {} ['DEFINE_DESTINATION_GROUP       ', clc$nominal_entry,
        clc$advertised_entry, 2, clc$automatically_log, clc$linked_call,
        ^cmd_define_destination_group],
  {} ['DEFINE_DESTINATION_NAME_SWITCH ', clc$nominal_entry,
        clc$advertised_entry, 3, clc$automatically_log, clc$linked_call,
        ^cmd_define_dest_name_switch],
  {} ['DEFINE_SOURCE_NAME_SWITCH      ', clc$nominal_entry,
        clc$advertised_entry, 4, clc$automatically_log, clc$linked_call,
        ^cmd_define_source_name_switch],
  {} ['DEFSNS                         ', clc$abbreviation_entry,
        clc$advertised_entry, 4, clc$automatically_log, clc$linked_call,
        ^cmd_define_source_name_switch],
  {} ['QUI                            ', clc$abbreviation_entry,
        clc$advertised_entry, 5, clc$automatically_log, clc$linked_call,
        ^cmd_quit_sf_directive],
  {} ['QUIT                           ', clc$nominal_entry,
        clc$advertised_entry, 5, clc$automatically_log, clc$linked_call,
        ^cmd_quit_sf_directive]];

?? POP ??

