emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r117237: src/w32heap.c (init_heap): Fix typos in com


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r117237: src/w32heap.c (init_heap): Fix typos in comments (again).
Date: Mon, 02 Jun 2014 17:19:31 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117237
revision-id: address@hidden
parent: address@hidden
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Mon 2014-06-02 20:19:19 +0300
message:
  src/w32heap.c (init_heap): Fix typos in comments (again).
modified:
  src/w32heap.c                  w32heap.c-20091113204419-o5vbwnq5f7feedwu-810
=== modified file 'src/w32heap.c'
--- a/src/w32heap.c     2014-06-02 17:17:55 +0000
+++ b/src/w32heap.c     2014-06-02 17:19:19 +0000
@@ -201,7 +201,7 @@
 
 /* Heap creation.  */
 
-/* Under MinGW32, we want to turn on Low Fragmentation Heap for XP.
+/* We want to turn on Low Fragmentation Heap for XP and older systems.
    MinGW32 lacks those definitions.  */
 #ifndef _W64
 typedef enum _HEAP_INFORMATION_CLASS {
@@ -234,8 +234,7 @@
       heap = HeapCreate(0, 0, 0);
 
 #ifndef _W64
-      /* Set the low-fragmentation heap for OS before XP and Windows
-        Server 2003.  */
+      /* Set the low-fragmentation heap for OS before Vista.  */
       HMODULE hm_kernel32dll = LoadLibrary("kernel32.dll");
       HeapSetInformation_Proc s_pfn_Heap_Set_Information = 
(HeapSetInformation_Proc) GetProcAddress(hm_kernel32dll, "HeapSetInformation");
       if (s_pfn_Heap_Set_Information != NULL)


reply via email to

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