]> git.eshelyaron.com Git - emacs.git/commitdiff
After-merge
authorGerd Möllmann <gerd@gnu.org>
Mon, 2 Oct 2023 08:09:15 +0000 (10:09 +0200)
committerGerd Möllmann <gerd@gnu.org>
Mon, 2 Oct 2023 08:09:15 +0000 (10:09 +0200)
* src/alloc.c (cleanup_vector): Add PVEC_PACKAGE to switch.
(find_string_data_in_pure): #if 0

src/alloc.c

index 0e6b79fcdc5d002398d8b1571b41c6ee8ad20871..0bd9ec4d7066c08f3228445464de81f9d5ae0f1c 100644 (file)
@@ -3524,6 +3524,7 @@ cleanup_vector (struct Lisp_Vector *vector)
     case PVEC_CHAR_TABLE:
     case PVEC_SUB_CHAR_TABLE:
     case PVEC_RECORD:
+    case PVEC_PACKAGE:
       break;
     }
 }
@@ -5758,6 +5759,7 @@ check_pure_size (void)
             pure_bytes_used + pure_bytes_used_before_overflow);
 }
 
+#if 0
 /* Find the byte sequence {DATA[0], ..., DATA[NBYTES-1], '\0'} from
    the non-Lisp data pool of the pure storage, and return its start
    address.  Return NULL if not found.  */
@@ -5839,6 +5841,8 @@ find_string_data_in_pure (const char *data, ptrdiff_t nbytes)
   return NULL;
 }
 
+#endif // 0
+
 
 /* Return a string allocated in pure space.  DATA is a buffer holding
    NCHARS characters, and NBYTES bytes of string data.  MULTIBYTE