aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
authorDmitry Antipov2014-02-10 09:41:42 +0400
committerDmitry Antipov2014-02-10 09:41:42 +0400
commitc67955902ea6422b161245d240d702ddb3bcc722 (patch)
tree89796105c8b6ba40a520bfc6934b46a1232acbbb /src/cmds.c
parent6abe458993df450de8361c6cab3cf89e8c89c962 (diff)
downloademacs-c67955902ea6422b161245d240d702ddb3bcc722.tar.gz
emacs-c67955902ea6422b161245d240d702ddb3bcc722.zip
* cmds.c (Fself_insert_command): Respect the width of EMACS_INT
and avoid warning.
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c
index 29c574abb14..03ce54c8ee4 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -280,7 +280,7 @@ At the end, it runs `post-self-insert-hook'. */)
280 CHECK_NUMBER (n); 280 CHECK_NUMBER (n);
281 281
282 if (XFASTINT (n) < 1) 282 if (XFASTINT (n) < 1)
283 error ("Repetition argument is %d, but must be higher than 0.", 283 error ("Repetition argument is %"pI"d, but must be higher than 0.",
284 XFASTINT (n)); 284 XFASTINT (n));
285 285
286 if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command))) 286 if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command)))