Changeset 15288


Ignore:
Timestamp:
Mar 28, 2012, 7:19:12 PM (13 years ago)
Author:
wade.humeniuk
Message:

Added env and silently-ignore-catastrophic-failures keyword variable documentation to run-program

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/doc/src/external-process.xml

    r15273 r15288  
    7878            if-input-does-not-exist output (if-output-exists :error) (error
    7979            :output) (if-error-exists :error) status-hook
    80             external-format</synopsis>
     80            external-format env (silently-ignore-catastrophic-failures
     81            *silently-ignore-catastrophic-failure-in-run-program*)</synopsis>
    8182          </refsynopsisdiv>
    8283
     
    242243                    streams (input, output, and error) used to
    243244                    communicate with the external process.
     245                  </para>
     246                </listitem>
     247              </varlistentry>
     248              <varlistentry>
     249                <term>env</term>
     250                <listitem>
     251                  <para>
     252                    New OS environment variable bindings for the
     253                    external process.  By default the external process
     254                    inherits the environment of the running Lisp
     255                    process.  Env is an association list with elements
     256                    (&lt;Environment Variable
     257                    Name&gt;&nbsp;.&nbsp;&lt;Value&gt;). Name and
     258                    value are case sensitive strings. See <xref
     259                    linkend="f_setenv"/>.
     260                  </para>
     261                </listitem>
     262              </varlistentry>
     263              <varlistentry>
     264                <term>>silently-ignore-catastrophic-failures</term>
     265                <listitem>
     266                  <para>
     267                    If NIL, signal an error if run-program is unable
     268                    to start the program. If non-NIL, treat failure to
     269                    start the same as failure from the program itself,
     270                    by setting the status and exit-code
     271                    fields. Default is
     272                    *silently-ignore-catastrophic-failure-in-run-program*.
    244273                  </para>
    245274                </listitem>
Note: See TracChangeset for help on using the changeset viewer.