]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/edebug.el (edebug--frame): Move docstring where it belongs
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Apr 2021 16:51:28 +0000 (12:51 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 12 Apr 2021 16:51:28 +0000 (12:51 -0400)
lisp/emacs-lisp/edebug.el

index 365bc74874181c6722c522feb705068e7bd08269..cbc40193125f268f48814e74cec32a39df356e8d 100644 (file)
@@ -4116,12 +4116,12 @@ This should be a list of `edebug---frame' objects.")
   "Stack frames of the current Edebug Backtrace buffer with instrumentation.
 This should be a list of `edebug---frame' objects.")
 
-;; Data structure for backtrace frames with information
-;; from Edebug instrumentation found in the backtrace.
 (cl-defstruct
     (edebug--frame
      (:constructor edebug--make-frame)
      (:include backtrace-frame))
+  "Data structure for backtrace frames with information
+from Edebug instrumentation found in the backtrace."
   def-name before-index after-index)
 
 (defun edebug-pop-to-backtrace ()