Mercurial > hg > xemacs-beta
comparison src/cmds.c @ 5438:8d29f1c4bb98
Merge with 21.5 trunk.
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Fri, 26 Nov 2010 06:43:36 +0100 |
parents | 308d34e9f07d c096d8051f89 |
children | 56144c8593a8 |
comparison
equal
deleted
inserted
replaced
5437:002cb5224e4f | 5438:8d29f1c4bb98 |
---|---|
330 /* This function can GC */ | 330 /* This function can GC */ |
331 Ichar ch; | 331 Ichar ch; |
332 Lisp_Object c; | 332 Lisp_Object c; |
333 EMACS_INT n; | 333 EMACS_INT n; |
334 | 334 |
335 CHECK_NATNUM (count); | 335 /* Can't insert more than most-positive-fixnum characters, the buffer |
336 won't hold that many. */ | |
337 check_integer_range (count, Qzero, make_int (EMACS_INT_MAX)); | |
336 n = XINT (count); | 338 n = XINT (count); |
337 | 339 |
338 if (CHAR_OR_CHAR_INTP (Vlast_command_char)) | 340 if (CHAR_OR_CHAR_INTP (Vlast_command_char)) |
339 c = Vlast_command_char; | 341 c = Vlast_command_char; |
340 else | 342 else |