Mercurial > emacs
changeset 3719:695181e4bc20
(Fprimitive_undo): Rename arg to N to avoid conflict.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 13 Jun 1993 23:15:39 +0000 |
parents | 37a8a7489fc5 |
children | 408c7ee69be7 |
files | src/undo.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/undo.c Sun Jun 13 22:32:17 1993 +0000 +++ b/src/undo.c Sun Jun 13 23:15:39 1993 +0000 @@ -285,11 +285,11 @@ DEFUN ("primitive-undo", Fprimitive_undo, Sprimitive_undo, 2, 2, 0, "Undo N records from the front of the list LIST.\n\ Return what remains of the list.") - (count, list) - Lisp_Object count, list; + (n, list) + Lisp_Object n, list; { int count = specpdl_ptr - specpdl; - register int arg = XINT (count); + register int arg = XINT (n); #if 0 /* This is a good feature, but would make undo-start unable to do what is expected. */ Lisp_Object tem;