aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorPaul Eggert2018-08-14 12:07:09 -0700
committerPaul Eggert2018-08-14 12:08:03 -0700
commit11c7c2f758f8f07e7b917fbc93267cee236a80e5 (patch)
treeabd4c9e192fe6f0a125f54b61b881fff73f58de0 /etc
parentdb6f511eb709def49280ca5ff2f05b2b7cbfd98d (diff)
downloademacs-11c7c2f758f8f07e7b917fbc93267cee236a80e5.tar.gz
emacs-11c7c2f758f8f07e7b917fbc93267cee236a80e5.zip
Remove more traces of misc (Bug#32405)
Remove misc-objects-consed and the misc component of memory-use-count, since misc objects no longer exist. * doc/lispref/internals.texi, etc/NEWS: Mention this, and adjust better to recent removal of misc objects. * src/alloc.c (MEM_TYPE_MISC): Remove; no longer used. (Fmemory_use_counts): Omit misc count, since miscs no longer exist. (misc-objects-consed): Remove.
Diffstat (limited to 'etc')
-rw-r--r--etc/NEWS8
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index e381a546a91..f1d09a2b639 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -831,9 +831,11 @@ is backwards-compatible with versions of Emacs in which the old function
831exists. See the node "Displaying Buffers in Side Windows" in the ELisp 831exists. See the node "Displaying Buffers in Side Windows" in the ELisp
832manual for more details. 832manual for more details.
833 833
834** The 'garbage-collect' function no longer returns a 'misc' component 834** garbage collection no longer treats miscellaneous objects specially;
835because garbage collection no longer treats miscellaneous objects 835they are now allocated like any other pseudovector. As a result, the
836specially; they are now allocated like any other pseudovector. 836'garbage-collect' and 'memory-use-count' functions no longer return a
837'misc' component, and the 'misc-objects-consed' variable has been
838removed.
837 839
838 840
839* Lisp Changes in Emacs 27.1 841* Lisp Changes in Emacs 27.1