comparison lisp/emacs-lisp/debug.el @ 662:8a533acedb77

*** empty log message ***
author Eric S. Raymond <esr@snark.thyrsus.com>
date Sat, 30 May 1992 23:54:21 +0000
parents ab9a55b26bd4
children 4f28bd14272c
comparison
equal deleted inserted replaced
661:36fbc3f71803 662:8a533acedb77
1 ;; Debuggers and related commands for Emacs 1 ;;; debug.el --- debuggers and related commands for Emacs
2
2 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. 3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
3 4
4 ;; This file is part of GNU Emacs. 5 ;; This file is part of GNU Emacs.
5 6
6 ;; GNU Emacs is free software; you can redistribute it and/or modify 7 ;; GNU Emacs is free software; you can redistribute it and/or modify
352 (prin1 (car list)) 353 (prin1 (car list))
353 (terpri) 354 (terpri)
354 (setq list (cdr list)))) 355 (setq list (cdr list))))
355 (princ "Note: if you have redefined a function, then it may no longer\n") 356 (princ "Note: if you have redefined a function, then it may no longer\n")
356 (princ "be set to debug on entry, even if it is in the list.")))) 357 (princ "be set to debug on entry, even if it is in the list."))))
358
359 ;;; debug.el ends here