aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorChong Yidong2013-12-27 11:38:26 +0800
committerChong Yidong2013-12-27 11:38:26 +0800
commit0f1d29342f29e666bb6abe4073a30b425a63d26c (patch)
treeea14e45e38b0618be18ba70606e5e68c93c3c6af /src/data.c
parent9cab7521b388464b6028dbd27751019ff2afcdba (diff)
downloademacs-0f1d29342f29e666bb6abe4073a30b425a63d26c.tar.gz
emacs-0f1d29342f29e666bb6abe4073a30b425a63d26c.zip
More doc updates
* commands.texi (Reading One Event): Mention keyboard coding. * functions.texi (Function Cells): * eval.texi (Function Indirection): Update for the fact that symbol-function no longer signals an error. * keymaps.texi (Translation Keymaps, Translation Keymaps): * nonascii.texi (Terminal I/O Encoding): Copyedits. * data.c (Fsymbol_function): Doc fix.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c
index 1fe7a1c9b65..fecf9700ff2 100644
--- a/src/data.c
+++ b/src/data.c
@@ -686,7 +686,7 @@ Return SYMBOL. */)
686} 686}
687 687
688DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, 688DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0,
689 doc: /* Return SYMBOL's function definition. Error if that is void. */) 689 doc: /* Return SYMBOL's function definition, or nil if that is void. */)
690 (register Lisp_Object symbol) 690 (register Lisp_Object symbol)
691{ 691{
692 CHECK_SYMBOL (symbol); 692 CHECK_SYMBOL (symbol);