Propagate Ben's renamings to the Lisp code that makes use of the
renamed functions.
lisp/ChangeLog addition:
2005-11-02 Marcus Crestani <crestani(a)xemacs.org>
* diagnose.el: Rename `show-lrecord-stats' to
`show-object-memory-usage-stats', to keep in sync with the C
sources.
xemacs-21.5 source patch:
Diff command: cvs -q diff -u
Files affected: lisp/diagnose.el
Index: lisp/diagnose.el
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/lisp/diagnose.el,v
retrieving revision 1.4
diff -u -r1.4 diagnose.el
--- lisp/diagnose.el 15 May 2005 16:37:56 -0000 1.4
+++ lisp/diagnose.el 2 Nov 2005 02:41:56 -0000
@@ -166,12 +166,12 @@
grandtotal))))
-(defun show-lrecord-stats ()
- "Show statistics about lrecord usage in XEmacs."
+(defun show-object-memory-usage-stats ()
+ "Show statistics about object memeory usage in XEmacs."
(interactive)
(garbage-collect)
- (let ((buffer "*lrecord statistics*")
- (plist (lrecord-stats))
+ (let ((buffer "*object memory usage statistics*")
+ (plist (object-memory-usage-stats))
(fmt "%-30s%10s%10s\n")
(grandtotal 0)
begin)
@@ -233,7 +233,7 @@
(save-excursion
(set-buffer buffer)
(setq begin (point))
- (princ "Allocated with new allocator:\n")
+ (princ "Allocated with lisp allocator:\n")
(show-stats "\\(.*\\)-storage$")
(princ "\n\n")
(setq begin (point))
--
Marcus
Show replies by date