diff options
| author | Chong Yidong | 2013-12-27 11:38:26 +0800 |
|---|---|---|
| committer | Chong Yidong | 2013-12-27 11:38:26 +0800 |
| commit | 0f1d29342f29e666bb6abe4073a30b425a63d26c (patch) | |
| tree | ea14e45e38b0618be18ba70606e5e68c93c3c6af /src/data.c | |
| parent | 9cab7521b388464b6028dbd27751019ff2afcdba (diff) | |
| download | emacs-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.c | 2 |
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 | ||
| 688 | DEFUN ("symbol-function", Fsymbol_function, Ssymbol_function, 1, 1, 0, | 688 | DEFUN ("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); |