aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2010-09-14 22:17:28 +0200
committerJuanma Barranquero2010-09-14 22:17:28 +0200
commit2b5491fabb7656ed913b324612b6d9e5a55a3c23 (patch)
tree600312382ed0727735675d4f68cd548ea5d1fc77 /src
parentc97c655f5f1e26f3fdde6d5907afcd9ab4cd5bf1 (diff)
downloademacs-2b5491fabb7656ed913b324612b6d9e5a55a3c23.tar.gz
emacs-2b5491fabb7656ed913b324612b6d9e5a55a3c23.zip
src/cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/cmds.c2
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 807b46c1052..7f7a0d7a222 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,10 @@
12010-09-14 Juanma Barranquero <lekktu@gmail.com>
2
3 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
4
12010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org> 52010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 6
3 * xml.c (parse_string): Renamed to parse_string(), since that's 7 * xml.c (parse_buffer): Renamed to parse_string(), since that's
4 what it does. 8 what it does.
5 (parse_string): Return nil when the document can't be parsed. 9 (parse_string): Return nil when the document can't be parsed.
6 10
@@ -141,7 +145,7 @@
141 (x_produce_glyphs): Simplify by using the same code for ASCII and 145 (x_produce_glyphs): Simplify by using the same code for ASCII and
142 non-ASCII characters. Don't set it->char_to_display here. 146 non-ASCII characters. Don't set it->char_to_display here.
143 Don't handle unibyte-display-via-language-environment here. For a 147 Don't handle unibyte-display-via-language-environment here. For a
144 charater of no glyph, use font->space_width instead of FONT_WIDTH. 148 character of no glyph, use font->space_width instead of FONT_WIDTH.
145 149
1462010-08-31 Stefan Monnier <monnier@iro.umontreal.ca> 1502010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
147 151
diff --git a/src/cmds.c b/src/cmds.c
index f12e759b7a6..0e305e1fce4 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -524,7 +524,7 @@ syms_of_cmds (void)
524 524
525 DEFVAR_LISP ("post-self-insert-hook", &Vpost_self_insert_hook, 525 DEFVAR_LISP ("post-self-insert-hook", &Vpost_self_insert_hook,
526 doc: /* Hook run at the end of `self-insert-command'. 526 doc: /* Hook run at the end of `self-insert-command'.
527This run is run after inserting the charater. */); 527This is run after inserting the character. */);
528 Vpost_self_insert_hook = Qnil; 528 Vpost_self_insert_hook = Qnil;
529 529
530 defsubr (&Sforward_point); 530 defsubr (&Sforward_point);