Mercurial > hg > xemacs-beta
diff lisp/diagnose.el @ 5473:ac37a5f7e5be
Merge with trunk.
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Thu, 17 Mar 2011 23:42:59 +0100 |
parents | 308d34e9f07d ed74d2ca7082 |
children | 3bc58dc9d688 |
line wrap: on
line diff
--- a/lisp/diagnose.el Tue Feb 22 22:56:02 2011 +0100 +++ b/lisp/diagnose.el Thu Mar 17 23:42:59 2011 +0100 @@ -145,7 +145,7 @@ (window-list fr t)) (frame-list)) 16)) - (when-fboundp #'sort-numeric-fields + (when-fboundp 'sort-numeric-fields (sort-numeric-fields -1 (save-excursion (goto-char begin) @@ -179,7 +179,7 @@ (princ "\n") (princ (format fmt "total" total)) (incf grandtotal total)) - (when-fboundp #'sort-numeric-fields + (when-fboundp 'sort-numeric-fields (sort-numeric-fields -1 (save-excursion (goto-char begin) @@ -287,7 +287,7 @@ total-non-lisp-use "")) (incf grandtotal total-use-with-overhead) (incf grandtotal total-non-lisp-use) - (when-fboundp #'sort-numeric-fields + (when-fboundp 'sort-numeric-fields (sort-numeric-fields -4 (save-excursion (goto-char begin) @@ -310,7 +310,7 @@ "Show statistics about memory usage of the new allocator." (interactive) (garbage-collect) - (if-fboundp #'mc-alloc-memory-usage + (if-fboundp 'mc-alloc-memory-usage (let* ((stats (mc-alloc-memory-usage)) (page-size (first stats)) (heap-sects (second stats)) @@ -463,7 +463,7 @@ (defun show-gc-stats () "Show statistics about garbage collection cycles." (interactive) - (if-fboundp #'gc-stats + (if-fboundp 'gc-stats (let ((buffer "*garbage collection statistics*") (plist (gc-stats)) (fmt "%-9s %16s %12s %12s %12s %12s\n"))