drop docs for 2 functions removed from Lua

This commit is contained in:
Kartik K. Agaram 2022-03-13 17:39:57 -07:00
parent b68405fe31
commit 6133cfa524
1 changed files with 0 additions and 25 deletions

View File

@ -3961,20 +3961,6 @@ this value is exactly <code>t2</code><em>-</em><code>t1</code>.
<p>
<hr><h3><a name="pdf-os.execute"><code>os.execute ([command])</code></a></h3>
<p>
This function is equivalent to the C&nbsp;function <code>system</code>.
It passes <code>command</code> to be executed by an operating system shell.
It returns a status code, which is system-dependent.
If <code>command</code> is absent, then it returns nonzero if a shell is available
and zero otherwise.
<p>
<hr><h3><a name="pdf-os.exit"><code>os.exit ([code])</code></a></h3>
@ -3988,17 +3974,6 @@ The default value for <code>code</code> is the success code.
<p>
<hr><h3><a name="pdf-os.getenv"><code>os.getenv (varname)</code></a></h3>
<p>
Returns the value of the process environment variable <code>varname</code>,
or <b>nil</b> if the variable is not defined.
<p>
<hr><h3><a name="pdf-os.remove"><code>os.remove (filename)</code></a></h3>