]> granicus.if.org Git - vim/commitdiff
updated for version 7.1a
authorBram Moolenaar <Bram@vim.org>
Sun, 6 May 2007 14:15:36 +0000 (14:15 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 6 May 2007 14:15:36 +0000 (14:15 +0000)
src/memfile.c

index d5caf3b9a54437f95793af06159973f5d874def1..0c4d01cc0cc880152658a16cfad00da7ce152de9 100644 (file)
@@ -325,9 +325,9 @@ mf_new(mfp, negative, page_count)
     int                negative;
     int                page_count;
 {
-    bhdr_T    *hp;         /* new bhdr_T */
-    bhdr_T    *freep;      /* first block in free list */
-    char_u  *p;
+    bhdr_T     *hp;    /* new bhdr_T */
+    bhdr_T     *freep; /* first block in free list */
+    char_u     *p;
 
     /*
      * If we reached the maximum size for the used memory blocks, release one
@@ -348,10 +348,10 @@ mf_new(mfp, negative, page_count)
         * If the block in the free list has more pages, take only the number
         * of pages needed and allocate a new bhdr_T with data
         *
-        * If the number of pages matches and mf_release did not return a bhdr_T,
-        * use the bhdr_T from the free list and allocate the data
+        * If the number of pages matches and mf_release() did not return a
+        * bhdr_T, use the bhdr_T from the free list and allocate the data
         *
-        * If the number of pages matches and mf_release returned a bhdr_T,
+        * If the number of pages matches and mf_release() returned a bhdr_T,
         * just use the number and free the bhdr_T from the free list
         */
        if (freep->bh_page_count > page_count)