aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/data.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 053a498392c..4e8c9a10223 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12013-12-27 Chong Yidong <cyd@gnu.org>
2
3 * data.c (Fsymbol_function): Doc fix.
4
12013-12-26 Martin Rudalics <rudalics@gmx.at> 52013-12-26 Martin Rudalics <rudalics@gmx.at>
2 6
3 Some more tinkering with Bug#16051. 7 Some more tinkering with Bug#16051.
@@ -7649,7 +7653,7 @@
7649 7653
7650 * keyboard.c: Apply keyboard decoding only to events that come directly 7654 * keyboard.c: Apply keyboard decoding only to events that come directly
7651 from the tty, not from unread-command-events (bug#14368). 7655 from the tty, not from unread-command-events (bug#14368).
7652 (read_event_from_main_queue): New function, extracted from read_char). 7656 (read_event_from_main_queue): New function, extracted from read_char.
7653 (read_decoded_char): Remove. 7657 (read_decoded_char): Remove.
7654 (read_decoded_event_from_main_queue): New function to replace it. 7658 (read_decoded_event_from_main_queue): New function to replace it.
7655 (read_char): Use it. 7659 (read_char): Use it.
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);