Mercurial > hg > xemacs-beta
changeset 5702:c65b0329894b
Fix last patch.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Mon, 24 Dec 2012 18:40:47 +0900 |
parents | ad35a0cd95f5 |
children | 6b027725e340 |
files | src/ChangeLog src/cmds.c |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Mon Dec 24 15:12:52 2012 +0900 +++ b/src/ChangeLog Mon Dec 24 18:40:47 2012 +0900 @@ -1,3 +1,8 @@ +2012-12-24 Stephen J. Turnbull <stephen@xemacs.org> + + (Fself_insert_command): Oops, Aidan renamed make_int to make_fixnum. + Adjust my patch to match. Thank you, Mr. Buildbot (and matsl! :-) + 2012-12-24 Stephen J. Turnbull <stephen@xemacs.org> * cmds.c (Fself_insert_command):
--- a/src/cmds.c Mon Dec 24 15:12:52 2012 +0900 +++ b/src/cmds.c Mon Dec 24 18:40:47 2012 +0900 @@ -334,7 +334,7 @@ /* It is sometimes useful to specify `self-insert-commmand' in Lisp code. We may as well as all that to be done with default = 1. */ - count = NILP (count) ? make_int(1) : count; + count = NILP (count) ? make_fixnum(1) : count; /* Can't insert more than most-positive-fixnum characters, the buffer won't hold that many. */ check_integer_range (count, Qzero, make_fixnum (MOST_POSITIVE_FIXNUM));