summaryrefslogtreecommitdiff
path: root/src/undo.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-06-13 23:15:39 +0000
committerRichard M. Stallman <rms@gnu.org>1993-06-13 23:15:39 +0000
commitb4450e77eb4637322ee497df48dbc5396bc3ac3b (patch)
tree868238aa0dce804c8e342f3525afab4707ab5d76 /src/undo.c
parentcd803fce3b0ea07a6ef57be8133ce00ae0ac05e4 (diff)
downloademacs-b4450e77eb4637322ee497df48dbc5396bc3ac3b.tar.gz
(Fprimitive_undo): Rename arg to N to avoid conflict.
Diffstat (limited to 'src/undo.c')
-rw-r--r--src/undo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/undo.c b/src/undo.c
index 1c399fb873f..2e6cae310b6 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -285,11 +285,11 @@ truncate_undo_list (list, minsize, maxsize)
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;