]> code.delx.au - gnu-emacs/blobdiff - lisp/emacs-lisp/eieio-datadebug.el
* lisp/emacs-lisp/autoload.el (autoload-make-program): Remove, unused.
[gnu-emacs] / lisp / emacs-lisp / eieio-datadebug.el
index 0e74d5d2e55d4a7f5227e627f0cb18b4b6bd35df..b7f0deb0ee2bf570c04567cdbcc8ab981663a1bb 100644 (file)
@@ -1,9 +1,10 @@
 ;;; eieio-datadebug.el --- EIEIO extensions to the data debugger.
 
-;; Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 2007-2012  Free Software Foundation, Inc.
 
-;; Author: Eric M. Ludlam  <zappo@gnu.org>
+;; Author: Eric M. Ludlam <zappo@gnu.org>
 ;; Keywords: OO, lisp
+;; Package: eieio
 
 ;; This file is part of GNU Emacs.
 
@@ -51,7 +52,7 @@ PREFIX specifies what to insert at the start of each line."
 
 (defun data-debug-insert-object-button (object prefix prebuttontext)
   "Insert a button representing OBJECT.
-PREFIX is the text that preceeds the button.
+PREFIX is the text that precedes the button.
 PREBUTTONTEXT is some text between PREFIX and the object button."
   (let ((start (point))
        (end nil)
@@ -122,7 +123,7 @@ PREBUTTONTEXT is some text between PREFIX and the object button."
 ;; A generic function to run DDEBUG on an object and popup a new buffer.
 ;;
 (defmethod data-debug-show ((obj eieio-default-superclass))
-  "Run ddebug against any EIEIO object OBJ"
+  "Run ddebug against any EIEIO object OBJ."
   (data-debug-new-buffer (format "*%s DDEBUG*" (object-name obj)))
   (data-debug-insert-object-slots obj "]"))