From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/function-forms.html | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 devdocs/elisp/function-forms.html (limited to 'devdocs/elisp/function-forms.html') diff --git a/devdocs/elisp/function-forms.html b/devdocs/elisp/function-forms.html deleted file mode 100644 index cae19311..00000000 --- a/devdocs/elisp/function-forms.html +++ /dev/null @@ -1,8 +0,0 @@ -

Evaluation of Function Forms

If the first element of a list being evaluated is a Lisp function object, byte-code object or primitive function object, then that list is a function call. For example, here is a call to the function +:

(+ 1 x)
-
-

The first step in evaluating a function call is to evaluate the remaining elements of the list from left to right. The results are the actual argument values, one value for each list element. The next step is to call the function with this list of arguments, effectively using the function apply (see Calling Functions). If the function is written in Lisp, the arguments are used to bind the argument variables of the function (see Lambda Expressions); then the forms in the function body are evaluated in order, and the value of the last body form becomes the value of the function call.

-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Function-Forms.html -

-
-- cgit v1.2.3