comparison lisp/emacs-lisp/profile.el @ 2233:fb0ed5a1d0f3

Add standard library headers.
author Eric S. Raymond <esr@snark.thyrsus.com>
date Wed, 17 Mar 1993 17:17:05 +0000
parents 213978acbc1e
children a92eb4fb44b3
comparison
equal deleted inserted replaced
2232:4f9d60f7de9d 2233:fb0ed5a1d0f3
1 ;;; profile.el -- generate run time measurements of Emacs Lisp functions 1 ;;; profile.el --- generate run time measurements of Emacs Lisp functions
2 2
3 ;; Copyright (C) 1992 Free Software Foundation, Inc. 3 ;; Copyright (C) 1992 Free Software Foundation, Inc.
4 4
5 ;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu> 5 ;; Author: Boaz Ben-Zvi <boaz@lcs.mit.edu>
6 ;; Created: 07 Feb 1992 6 ;; Created: 07 Feb 1992
354 (defun profile-quit () 354 (defun profile-quit ()
355 "Kill the timer process." 355 "Kill the timer process."
356 (interactive) 356 (interactive)
357 (process-send-string profile-timer-process "q\n")) 357 (process-send-string profile-timer-process "q\n"))
358 358
359 ;; profile.el ends here 359 ;;; profile.el ends here