emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r110925: Yet more fixes for bug #1


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r110925: Yet more fixes for bug #12878 with MSVC build.
Date: Tue, 20 Nov 2012 19:07:55 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 110925
fixes bug: http://debbugs.gnu.org/12878
committer: Eli Zaretskii <address@hidden>
branch nick: emacs-24
timestamp: Tue 2012-11-20 19:07:55 +0200
message:
  Yet more fixes for bug #12878 with MSVC build.
  
   nt/inc/stdint.h (INTPTR_MIN): Define for MSVC.
modified:
  nt/ChangeLog
  nt/inc/stdint.h
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2012-11-19 17:34:21 +0000
+++ b/nt/ChangeLog      2012-11-20 17:07:55 +0000
@@ -1,3 +1,7 @@
+2012-11-20  Eli Zaretskii  <address@hidden>
+
+       * inc/stdint.h (INTPTR_MIN): Define for MSVC.
+
 2012-11-19  Eli Zaretskii  <address@hidden>
 
        * inc/stdint.h (PTRDIFF_MIN) [!__GNUC__]: Define for MSVC.

=== modified file 'nt/inc/stdint.h'
--- a/nt/inc/stdint.h   2012-11-19 17:34:21 +0000
+++ b/nt/inc/stdint.h   2012-11-20 17:07:55 +0000
@@ -37,6 +37,7 @@
 #define INT64_MAX 9223372036854775807i64
 #define INT64_MIN (~INT64_MAX)
 #define INTPTR_MAX INT64_MAX
+#define INTPTR_MIN INT64_MIN
 #define UINTMAX_MAX UINT64_MAX
 #define UINTMAX_MIN UINT64_MIN
 #define INTMAX_MAX INT64_MAX
@@ -51,6 +52,7 @@
 #define INT32_MAX 2147483647
 #define INT32_MIN (~INT32_MAX)
 #define INTPTR_MAX INT32_MAX
+#define INTPTR_MIN INT32_MIN
 #define UINTMAX_MAX UINT32_MAX
 #define UINTMAX_MIN UINT32_MIN
 #define INTMAX_MAX INT32_MAX


reply via email to

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