summaryrefslogtreecommitdiff
path: root/devdocs/elisp/symbols.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
committerCraig Jennings <c@cjennings.net>2024-04-07 13:41:34 -0500
commit754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 (patch)
treef1190704f78f04a2b0b4c977d20fe96a828377f1 /devdocs/elisp/symbols.html
new repository
Diffstat (limited to 'devdocs/elisp/symbols.html')
-rw-r--r--devdocs/elisp/symbols.html34
1 files changed, 34 insertions, 0 deletions
diff --git a/devdocs/elisp/symbols.html b/devdocs/elisp/symbols.html
new file mode 100644
index 00000000..3beb85eb
--- /dev/null
+++ b/devdocs/elisp/symbols.html
@@ -0,0 +1,34 @@
+ <h2 class="chapter">Symbols</h2> <p>A <em>symbol</em> is an object with a unique name. This chapter describes symbols, their components, their property lists, and how they are created and interned. Separate chapters describe the use of symbols as variables and as function names; see <a href="variables">Variables</a>, and <a href="functions">Functions</a>. For the precise read syntax for symbols, see <a href="symbol-type">Symbol Type</a>. </p> <p>You can test whether an arbitrary Lisp object is a symbol with <code>symbolp</code>: </p> <dl> <dt id="symbolp">Function: <strong>symbolp</strong> <em>object</em>
+</dt> <dd><p>This function returns <code>t</code> if <var>object</var> is a symbol, <code>nil</code> otherwise. </p></dd>
+</dl> <table class="menu" border="0" cellspacing="0"> <tr>
+<td align="left" valign="top">• <a href="symbol-components" accesskey="1">Symbol Components</a>
+</td>
+<td> </td>
+<td align="left" valign="top">Symbols have names, values, function definitions and property lists. </td>
+</tr> <tr>
+<td align="left" valign="top">• <a href="definitions" accesskey="2">Definitions</a>
+</td>
+<td> </td>
+<td align="left" valign="top">A definition says how a symbol will be used. </td>
+</tr> <tr>
+<td align="left" valign="top">• <a href="creating-symbols" accesskey="3">Creating Symbols</a>
+</td>
+<td> </td>
+<td align="left" valign="top">How symbols are kept unique. </td>
+</tr> <tr>
+<td align="left" valign="top">• <a href="symbol-properties" accesskey="4">Symbol Properties</a>
+</td>
+<td> </td>
+<td align="left" valign="top">Each symbol has a property list for recording miscellaneous information. </td>
+</tr> <tr>
+<td align="left" valign="top">• <a href="shorthands" accesskey="5">Shorthands</a>
+</td>
+<td> </td>
+<td align="left" valign="top">Properly organize your symbol names but type less of them. </td>
+</tr> <tr><th colspan="3" align="left" valign="top"></th></tr>
+</table><div class="_attribution">
+ <p class="_attribution-p">
+ Copyright &copy; 1990-1996, 1998-2022 Free Software Foundation, Inc. <br>Licensed under the GNU GPL license.<br>
+ <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Symbols.html" class="_attribution-link">https://www.gnu.org/software/emacs/manual/html_node/elisp/Symbols.html</a>
+ </p>
+</div>