emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r112611: Define SIZE_MAX for MSVC, pa


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r112611: Define SIZE_MAX for MSVC, part of bug #14409.
Date: Thu, 16 May 2013 20:31:25 +0300
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 112611
fixes bug: http://debbugs.gnu.org/14409
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Thu 2013-05-16 20:31:25 +0300
message:
  Define SIZE_MAX for MSVC, part of bug #14409.
  
   nt/inc/stdint.h (SIZE_MAX) [!__GNUC__]: Define.
modified:
  nt/ChangeLog
  nt/inc/stdint.h
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2013-05-16 12:48:54 +0000
+++ b/nt/ChangeLog      2013-05-16 17:31:25 +0000
@@ -1,5 +1,7 @@
 2013-05-16  Eli Zaretskii  <address@hidden>
 
+       * inc/stdint.h (SIZE_MAX) [!__GNUC__]: Define.  (Bug#14409)
+
        * msysconfig.sh: New file.
 
        * mingw-cfg.site: New file.

=== modified file 'nt/inc/stdint.h'
--- a/nt/inc/stdint.h   2013-03-16 08:55:38 +0000
+++ b/nt/inc/stdint.h   2013-05-16 17:31:25 +0000
@@ -65,6 +65,7 @@
 
 #define PTRDIFF_MAX INTPTR_MAX
 #define PTRDIFF_MIN INTPTR_MIN
+#define SIZE_MAX UINTPTR_MAX
 
 #endif /* !__GNUC__ */
 


reply via email to

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