comparison lisp/emacs-lisp/eieio-datadebug.el @ 105474:0a64442c10e3

Fix typos. * emacs-lisp/chart.el, emacs-lisp/eieio.el, emacs-lisp/eieio-base.el * emacs-lisp/eieio-comp.el, emacs-lisp/eieio-custom.el * emacs-lisp/eieio-datadebug.el, emacs-lisp/eieio-opt.el * emacs-lisp/eieio-speedbar.el
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 05 Oct 2009 15:32:08 +0000
parents 7f4c7f5c0eba
children 1d1d5d9bd884
comparison
equal deleted inserted replaced
105473:07f6674a0832 105474:0a64442c10e3
120 ;;; DEBUG METHODS 120 ;;; DEBUG METHODS
121 ;; 121 ;;
122 ;; A generic function to run DDEBUG on an object and popup a new buffer. 122 ;; A generic function to run DDEBUG on an object and popup a new buffer.
123 ;; 123 ;;
124 (defmethod data-debug-show ((obj eieio-default-superclass)) 124 (defmethod data-debug-show ((obj eieio-default-superclass))
125 "Run ddebug against any EIEIO object OBJ" 125 "Run ddebug against any EIEIO object OBJ."
126 (data-debug-new-buffer (format "*%s DDEBUG*" (object-name obj))) 126 (data-debug-new-buffer (format "*%s DDEBUG*" (object-name obj)))
127 (data-debug-insert-object-slots obj "]")) 127 (data-debug-insert-object-slots obj "]"))
128 128
129 ;;; DEBUG FUNCTIONS 129 ;;; DEBUG FUNCTIONS
130 ;; 130 ;;