From 7be2b42bf85af8db29a5cd2794292172fbbed7de Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Mon, 2 Jan 2017 15:11:44 +0000 Subject: [PATCH] First system-private functions. --- system-private-functions.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 system-private-functions.md diff --git a/system-private-functions.md b/system-private-functions.md new file mode 100644 index 0000000..deda04d --- /dev/null +++ b/system-private-functions.md @@ -0,0 +1,10 @@ +System-private functions are functions private to the system, which no normal user is entitled to access; these functions normally have an [[access control]] value of NIL. + +# (sys-access-control arg) + +System private. Takes one argument. Returns the access control list of its argument. + +# (sys-readable arg user) + +System private. Takes two arguments. Returns TRUE if the first argument is readable by the reader represented by the second argument; else NIL. +