~ubuntu-branches/ubuntu/trusty/librep/trusty

« back to all changes in this revision

Viewing changes to debian/rep.sgml

  • Committer: Bazaar Package Importer
  • Author(s): Christian Marillat
  • Date: 2001-11-13 15:06:22 UTC
  • Revision ID: james.westby@ubuntu.com-20011113150622-kc8r4hke3msnvhi1
Tags: 0.15.2-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!doctype refentry PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
 
2
 
 
3
  <!ENTITY dhfirstname "<firstname>Christian</firstname>">
 
4
  <!ENTITY dhsurname   "<surname>Marillat</surname>">
 
5
  <!ENTITY dhdate      "<date>april  5, 2001</date>">
 
6
  <!ENTITY dhsection   "<manvolnum>1</manvolnum>">
 
7
  <!ENTITY dhemail     "<email>marillat@debian.org</email>">
 
8
  <!ENTITY dhusername  "Christian Marillat">
 
9
  <!ENTITY dhucpackage "<refentrytitle>rep</refentrytitle>">
 
10
  <!ENTITY dhpackage   "rep">
 
11
  <!ENTITY debian      "<productname>Debian GNU/Linux</productname>">
 
12
  <!ENTITY gnu         "<acronym>GNU</acronym>">
 
13
]>
 
14
 
 
15
<refentry>
 
16
  <refentryinfo>
 
17
    <address>
 
18
      &dhemail;
 
19
    </address>
 
20
    <author>
 
21
      &dhfirstname;
 
22
      &dhsurname;
 
23
    </author>
 
24
    <copyright>
 
25
      <year>2001</year>
 
26
      <holder>&dhusername;</holder>
 
27
    </copyright>
 
28
    &dhdate;
 
29
  </refentryinfo>
 
30
  <refmeta>
 
31
    &dhucpackage;
 
32
 
 
33
    &dhsection;
 
34
  </refmeta>
 
35
  <refnamediv>
 
36
    <refname>&dhpackage;</refname>
 
37
 
 
38
    <refpurpose> Read, Eval, Print Interpreter</refpurpose>
 
39
  </refnamediv>
 
40
  <refsynopsisdiv>
 
41
    <cmdsynopsis>
 
42
      <command>&dhpackage;</command>
 
43
 
 
44
     <arg><option> FILE </option></arg>
 
45
     <arg><option> --batch </option></arg>
 
46
     <arg><option> --interp </option></arg>
 
47
     <arg><option> -f, --call FUNCTION </option></arg>
 
48
     <arg><option> -l, --load FUNCTION </option></arg>
 
49
     <arg><option> -s, --scheme FILE </option></arg>
 
50
     <arg><option> --version </option></arg>
 
51
     <arg><option> --no-rc </option></arg>
 
52
     <arg><option> -q, --quit </option></arg>
 
53
 
 
54
    </cmdsynopsis>
 
55
  </refsynopsisdiv>
 
56
  <refsect1>
 
57
    <title>DESCRIPTION</title>
 
58
 
 
59
    <para><command>&dhpackage;</command> `librep' is a dialect of Lisp,
 
60
      designed to be used both as an extension language for applications and
 
61
      as a general purpose programming language. It was originally written
 
62
      to be mostly-compatible with Emacs Lisp, but has subsequently diverged
 
63
      markedly. Its aim is to combine the best features of Scheme and
 
64
      Common Lisp and provide an environment that is comfortable for
 
65
      implementing both small and large scale systems. It tries to be a
 
66
      "pragmatic" programming language.</para>
 
67
 
 
68
  </refsect1>
 
69
  <refsect1>
 
70
    <title>OPTIONS</title>
 
71
 
 
72
    <variablelist>
 
73
      <varlistentry>
 
74
        <term><option>FILE</option></term>
 
75
        <listitem>
 
76
          <para> load the Lisp file <replaceable>FILE</replaceable> (from the cwd if possible, implies
 
77
            <replaceable>--batch</replaceable> mode)</para>
 
78
        </listitem>
 
79
      </varlistentry>
 
80
      <varlistentry>
 
81
        <term><option>--batch</option></term>
 
82
        <listitem>
 
83
          <para>Batch mode: process options and exit.</para>
 
84
        </listitem>
 
85
      </varlistentry>
 
86
      <varlistentry>
 
87
        <term><option>--interp</option></term>
 
88
        <listitem>
 
89
          <para>Interpreted mode: don't load compile Lisp files.</para>
 
90
        </listitem>
 
91
      </varlistentry>
 
92
      <varlistentry>
 
93
        <term><option>-f <replaceable>FUNCTION</replaceable> --call <replaceable>FUNCTION</replaceable></option></term>
 
94
        <listitem>
 
95
          <para>Call the Lisp function <replaceable>FUNCTION</replaceable>.</para>
 
96
        </listitem>
 
97
      </varlistentry>
 
98
      <varlistentry>
 
99
        <term><option>-l <replaceable>FILE</replaceable> --load <replaceable>FILE</replaceable></option></term>
 
100
        <listitem>
 
101
          <para>Load the file of Lisp forms called <replaceable>FILE</replaceable>.</para>
 
102
        </listitem>
 
103
      </varlistentry>
 
104
      <varlistentry>
 
105
        <term><option>-s <replaceable>FILE</replaceable> --scheme <replaceable>FILE</replaceable></option></term>
 
106
        <listitem>
 
107
          <para>Load the file of Scheme forms called
 
108
             <replaceable>FILE</replaceable> (implies
 
109
             <replaceable>--batch</replaceable> mode).</para>
 
110
        </listitem>
 
111
      </varlistentry>
 
112
      <varlistentry>
 
113
        <term><option>--version</option></term>
 
114
        <listitem>
 
115
          <para>Print version details.</para>
 
116
        </listitem>
 
117
      </varlistentry>
 
118
      <varlistentry>
 
119
        <term><option>--no-rc</option></term>
 
120
        <listitem>
 
121
          <para>Don't load rc or site-init files.</para>
 
122
        </listitem>
 
123
      </varlistentry>
 
124
      <varlistentry>
 
125
        <term><option>-q --quit</option></term>
 
126
        <listitem>
 
127
          <para>Terminate the interpreter process.</para>
 
128
        </listitem>
 
129
      </varlistentry>
 
130
    </variablelist>
 
131
  </refsect1>
 
132
 
 
133
  <refsect1>
 
134
    <title>SEE ALSO</title>
 
135
 
 
136
    <para>The programs are documented fully by <citetitle>John
 
137
      Harper</citetitle> available via the <application>Info</application> system.</para>
 
138
  </refsect1>
 
139
 
 
140
  <refsect1>
 
141
    <title>AUTHOR</title>
 
142
 
 
143
    <para>This manual page was written by &dhusername; &dhemail; for
 
144
      the &debian; system (but may be used by others).</para>
 
145
 
 
146
  </refsect1>
 
147
</refentry>
 
148
 
 
149
<!-- Keep this comment at the end of the file
 
150
Local variables:
 
151
mode: sgml
 
152
sgml-omittag:t
 
153
sgml-shorttag:t
 
154
sgml-minimize-attributes:nil
 
155
sgml-always-quote-attributes:t
 
156
sgml-indent-step:2
 
157
sgml-indent-data:t
 
158
sgml-parent-document:nil
 
159
sgml-default-dtd-file:nil
 
160
sgml-exposed-tags:nil
 
161
sgml-local-catalogs:nil
 
162
sgml-local-ecat-files:nil
 
163
End:
 
164
-->