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/record-functions.html | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 devdocs/elisp/record-functions.html (limited to 'devdocs/elisp/record-functions.html') diff --git a/devdocs/elisp/record-functions.html b/devdocs/elisp/record-functions.html deleted file mode 100644 index 7bc90186..00000000 --- a/devdocs/elisp/record-functions.html +++ /dev/null @@ -1,24 +0,0 @@ -

Record Functions

Function: recordp object -
-

This function returns t if object is a record.

(recordp #s(a))
-     ⇒ t
-
-
-
Function: record type &rest objects -
-

This function creates and returns a record whose type is type and remaining slots are the rest of the arguments, objects.

(record 'foo 23 [bar baz] "rats")
-     ⇒ #s(foo 23 [bar baz] "rats")
-
-
-
Function: make-record type length object -
-

This function returns a new record with type type and length more slots, each initialized to object.

(setq sleepy (make-record 'foo 9 'Z))
-     ⇒ #s(foo Z Z Z Z Z Z Z Z Z)
-
-
-
-

- 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/Record-Functions.html -

-
-- cgit v1.2.3