1 /* BEGIN INCLUDE FILE ... cp_active_string_types.incl.pl1 */
 2 /* Created:  5 May 1980 by G. Palter */
 3 
 4 /* Types of active strings recognized by active string evaluation entries of the Multics command processor */
 5 
 6 dcl (DEFAULT_ACTIVE_STRING              initial (0),        /* default type: same as NORMAL_ACTIVE_STRING */
 7      NORMAL_ACTIVE_STRING               initial (1),        /* normal active string: [...] */
 8      TOKENS_ONLY_ACTIVE_STRING          initial (2),        /* rescan active string for whitespace and quotes: |[...] */
 9      ATOMIC_ACTIVE_STRING               initial (3))        /* do not rescan anything in value: ||[...] */
10           fixed binary static options (constant);
11 
12 /* END INCLUDE FILE ... cp_active_string_types.incl.pl1 */