emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116385: * cmds.c (Fself_insert_command): Respect th


From: Dmitry Antipov
Subject: [Emacs-diffs] trunk r116385: * cmds.c (Fself_insert_command): Respect the width of EMACS_INT
Date: Mon, 10 Feb 2014 05:41:58 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116385
revision-id: address@hidden
parent: address@hidden
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Mon 2014-02-10 09:41:42 +0400
message:
  * cmds.c (Fself_insert_command): Respect the width of EMACS_INT
  and avoid warning.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/cmds.c                     cmds.c-20091113204419-o5vbwnq5f7feedwu-214
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-02-09 06:32:30 +0000
+++ b/src/ChangeLog     2014-02-10 05:41:42 +0000
@@ -1,3 +1,8 @@
+2014-02-10  Dmitry Antipov  <address@hidden>
+
+       * cmds.c (Fself_insert_command): Respect the width of EMACS_INT
+       and avoid warning.
+
 2014-02-09  Lars Ingebrigtsen  <address@hidden>
 
        * cmds.c (Fself_insert_command): Output a clearer error message on

=== modified file 'src/cmds.c'
--- a/src/cmds.c        2014-02-09 06:32:30 +0000
+++ b/src/cmds.c        2014-02-10 05:41:42 +0000
@@ -280,7 +280,7 @@
   CHECK_NUMBER (n);
 
   if (XFASTINT (n) < 1)
-    error ("Repetition argument is %d, but must be higher than 0.",
+    error ("Repetition argument is %"pI"d, but must be higher than 0.",
           XFASTINT (n));
 
   if (!EQ (Vthis_command, KVAR (current_kboard, Vlast_command)))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]