Mercurial > hg > xemacs-beta
diff lisp/prim/profile.el @ 155:43dd3413c7c7 r20-3b4
Import from CVS: tag r20-3b4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:39:39 +0200 |
parents | 131b0175ea99 |
children | 5a88923fcbfe |
line wrap: on
line diff
--- a/lisp/prim/profile.el Mon Aug 13 09:38:27 2007 +0200 +++ b/lisp/prim/profile.el Mon Aug 13 09:39:39 2007 +0200 @@ -2,6 +2,9 @@ ;; Copyright (C) 1996 Ben Wing. +;; Maintainer: XEmacs Development Team +;; Keywords: internal + ;; This file is part of XEmacs. ;; XEmacs is free software; you can redistribute it and/or modify it @@ -21,6 +24,11 @@ ;;; Synched up with: Not in FSF. +;;; Commentary: + +;;; Code: + +;;;###autoload (defun pretty-print-profiling-info (&optional info) "Print profiling info INFO to standard output in a pretty format. If INFO is omitted, the current profiling info is retrieved using @@ -40,3 +48,5 @@ (princ (format "%-50s%10d %6.3f\n" f (cdar info) (* 100 (/ (cdar info) sum))))) (setq info (cdr info))))) + +;;; profile.el ends here