lispdoc - results for esc |
escape | |
| Mentioned in: HyperSpec - 2.1.4.5 Multiple Escape Characters HyperSpec - 2.1.4.5.1 Examples of Multiple Escape Characters HyperSpec - 2.1.4.6 Single Escape Character HyperSpec - 2.1.4.6.1 Examples of Single Escape Characters HyperSpec - 2.3.1.1.1 Escape Characters and Potential Numbers HyperSpec - 22.3.9.2 Tilde Circumflex: Escape Upward | |
cl-who:esc | Undocumented
|
*print-escape | |
| Mentioned in: HyperSpec - Variable *PRINT-ESCAPE | |
*print-escape* | Variable: Should we print in a reasonably machine-readable way? (possibly overridden by *PRINT-READABLY*)
|
| Mentioned in: CLtL2 - 19.5. Defstruct Options CLtL2 - 22.1.5. The Readtable CLtL2 - 22.1.6. What the Print Function Produces CLtL2 - 22.3.1. Output to Character Streams CLtL2 - 27.6. Pretty Printing Dispatch Tables CLtL2 - 28.2. Functions in the Programmer Interface CLtL2 - 29.3.18. Printing Conditions CLtL2 - 29.4.5. Defining Conditions CLtL2 - 29.4.7. Establishing Restarts | |
(cl-who:escape-char char &key (test *escape-char-p*)) | Function: Returns an escaped version of the character CHAR if CHAR satisfies the predicate TEST. Always returns a string.
|
(cl-who:escape-string string &key (test *escape-char-p*)) | Function: Escape all characters in STRING which pass TEST. This function is not guaranteed to return a fresh string. Note that you can pass NIL for STRING which'll just be returned.
|
(hunchentoot:escape-for-html string) | Function: Escapes the characters #\<, #\>, #\', #\", and #\& for HTML output.
|
(cl-who:escape-char-all char) | Function: Escapes characters which aren't in the 7-bit ASCII character set.
|
cl-who:*escape-char-p* | Variable: Used by ESCAPE-STRING to test whether a character should be escaped.
|
(cl-who:escape-string-all string) | Function: Escapes all characters in STRING which aren't in the 7-bit ASCII character set.
|
(cl-who:escape-char-minimal char) | Function: Escapes only #<, #>, and #& characters.
|
(cl-who:escape-string-minimal string) | Function: Escapes only #<, #>, and #& in STRING.
|
(cl-who:escape-string-iso-8859 string) | Function: Identical to ESCAPE-STRING-8859-1. Kept for backward compatibility.
|
(cl-who:escape-char-iso-8859-1 char) | Function: Escapes characters that aren't defined in ISO-8859-9.
|
(cl-who:escape-string-iso-8859-1 string) | Function: Escapes all characters in STRING which aren't defined in ISO-8859-1.
|
(cl-who:escape-char-minimal-plus-quotes char) | Function: Like ESCAPE-CHAR-MINIMAL but also escapes quotes.
|
(cl-who:escape-string-minimal-plus-quotes string) | Function: Like ESCAPE-STRING-MINIMAL but also escapes quotes.
|
(assoc item alist &key key (test nil testp) (test-not nil notp)) | Function: Return the cons in ALIST whose car is equal (by a given test or EQL) to the ITEM.
|
Example:(defun special-form? (symbol) (assoc symbol *special-form-alist*)) | Mentioned in: CLtL2 - 15.6. Association Lists CLtL2 - 23.1.4. Extended Wildcards CLtL2 - A.2.1. Scanners HyperSpec - Function ASSOC, ASSOC-IF, ASSOC-IF-NOT On Lisp - An ATN Compiler On Lisp - Functions as Properties PCL - cookies PCL - lookup tables alists and plists PCL - primitive binary types PCL - the current object stack |
scope | |
| Mentioned in: HyperSpec - 1.1 Scope, Purpose, and History HyperSpec - 1.1.1 Scope and Purpose HyperSpec - 3.3.4 Declaration Scope HyperSpec - 3.3.4.1 Examples of Declaration Scope | |
(assoc-if predicate alist &key key) | Function: Return the first cons in ALIST whose CAR satisfies PREDICATE. If KEY is supplied, apply it to the CAR of each cons before testing.
|
| Mentioned in: CLtL2 - 15.6. Association Lists HyperSpec - Function ASSOC, ASSOC-IF, ASSOC-IF-NOT PCL - lookup tables alists and plists | |
![]() |
![]() |
![]() |
![]() |
![]() |
![]() |
| By Bill Moorier |