1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<!-- Created by GNU Texinfo 6.7, http://www.gnu.org/software/texinfo/ -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>readtable-case (ANSI and GNU Common Lisp Document)</title>
<meta name="description" content="readtable-case (ANSI and GNU Common Lisp Document)">
<meta name="keywords" content="readtable-case (ANSI and GNU Common Lisp Document)">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="makeinfo">
<link href="index.html" rel="start" title="Top">
<link href="Reader-Dictionary.html" rel="up" title="Reader Dictionary">
<link href="readtablep.html" rel="next" title="readtablep">
<link href="read_002dfrom_002dstring.html" rel="prev" title="read-from-string">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.indentedblock {margin-right: 0em}
div.display {margin-left: 3.2em}
div.example {margin-left: 3.2em}
div.lisp {margin-left: 3.2em}
kbd {font-style: oblique}
pre.display {font-family: inherit}
pre.format {font-family: inherit}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
span.nolinebreak {white-space: nowrap}
span.roman {font-family: initial; font-weight: normal}
span.sansserif {font-family: sans-serif; font-weight: normal}
ul.no-bullet {list-style: none}
-->
</style>
</head>
<body lang="en">
<span id="readtable_002dcase"></span><div class="header">
<p>
Next: <a href="readtablep.html" accesskey="n" rel="next">readtablep</a>, Previous: <a href="read_002dfrom_002dstring.html" accesskey="p" rel="prev">read-from-string</a>, Up: <a href="Reader-Dictionary.html" accesskey="u" rel="up">Reader Dictionary</a> </p>
</div>
<hr>
<span id="readtable_002dcase-_005bAccessor_005d"></span><h4 class="subsection">23.2.7 readtable-case [Accessor]</h4>
<p><code>readtable-case</code> <i>readtable</i> ⇒ <i>mode</i>
</p>
<p>(setf (<code> readtable-case</code> <i>readtable</i>) mode)<br>
</p>
<span id="Arguments-and-Values_003a_003a-476"></span><h4 class="subsubheading">Arguments and Values::</h4>
<p><i>readtable</i>—a <i>readtable</i>.
</p>
<p><i>mode</i>—a <i>case sensitivity mode</i>.
</p>
<span id="Description_003a_003a-626"></span><h4 class="subsubheading">Description::</h4>
<p><i>Accesses</i> the <i>readtable case</i> of <i>readtable</i>,
which affects the way in which the <i>Lisp Reader</i> reads <i>symbols</i>
and the way in which the <i>Lisp Printer</i> writes <i>symbols</i>.
</p>
<span id="Examples_003a_003a-447"></span><h4 class="subsubheading">Examples::</h4>
<p>See <a href="Examples-of-Effect-of-Readtable-Case-on-the-Lisp-Reader.html">Examples of Effect of Readtable Case on the Lisp Reader</a> and <a href="Examples-of-Effect-of-Readtable-Case-on-the-Lisp-Printer.html">Examples of Effect of Readtable Case on the Lisp Printer</a>.
</p>
<span id="Exceptional-Situations_003a_003a-231"></span><h4 class="subsubheading">Exceptional Situations::</h4>
<p>Should signal an error of <i>type</i> <b>type-error</b>
if <i>readtable</i> is not a <i>readtable</i>.
Should signal an error of <i>type</i> <b>type-error</b>
if <i>mode</i> is not a <i>case sensitivity mode</i>.
</p>
<span id="See-Also_003a_003a-509"></span><h4 class="subsubheading">See Also::</h4>
<p><a href="readtable.html">readtable</a>
,
<b>*print-escape*</b>,
<a href="Reader-Algorithm.html">Reader Algorithm</a>,
<a href="Effect-of-Readtable-Case-on-the-Lisp-Reader.html">Effect of Readtable Case on the Lisp Reader</a>,
<a href="Effect-of-Readtable-Case-on-the-Lisp-Printer.html">Effect of Readtable Case on the Lisp Printer</a>
</p>
<span id="Notes_003a_003a-315"></span><h4 class="subsubheading">Notes::</h4>
<p><b>copy-readtable</b> copies the <i>readtable case</i> of the <i>readtable</i>.
</p>
</body>
</html>
|