diff options
| author | Craig Jennings <c@cjennings.net> | 2024-04-07 13:41:34 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2024-04-07 13:41:34 -0500 |
| commit | 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (patch) | |
| tree | f1190704f78f04a2b0b4c977d20fe96a828377f1 /devdocs/elisp/process-type.html | |
new repository
Diffstat (limited to 'devdocs/elisp/process-type.html')
| -rw-r--r-- | devdocs/elisp/process-type.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/devdocs/elisp/process-type.html b/devdocs/elisp/process-type.html new file mode 100644 index 00000000..1902c331 --- /dev/null +++ b/devdocs/elisp/process-type.html @@ -0,0 +1,9 @@ + <h4 class="subsection">Process Type</h4> <p>The word <em>process</em> usually means a running program. Emacs itself runs in a process of this sort. However, in Emacs Lisp, a process is a Lisp object that designates a subprocess created by the Emacs process. Programs such as shells, GDB, ftp, and compilers, running in subprocesses of Emacs, extend the capabilities of Emacs. An Emacs subprocess takes textual input from Emacs and returns textual output to Emacs for further manipulation. Emacs can also send signals to the subprocess. </p> <p>Process objects have no read syntax. They print in hash notation, giving the name of the process: </p> <div class="example"> <pre class="example">(process-list) + ⇒ (#<process shell>) +</pre> +</div> <p>See <a href="processes">Processes</a>, for information about functions that create, delete, return information about, send input or signals to, and receive output from processes. </p><div class="_attribution"> + <p class="_attribution-p"> + Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc. <br>Licensed under the GNU GPL license.<br> + <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Process-Type.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Process-Type.html</a> + </p> +</div> |
