summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2021-04-12 12:51:28 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2021-04-12 12:51:28 -0400
commit0e2cf3b9853bceb74632daa2bd22edb350840d91 (patch)
tree96469e8c941cbd8ca104a2805027df6d353f0ce4 /lisp/emacs-lisp
parent0df37f741679f99bb57da138e61c91a99ed918a5 (diff)
downloademacs-0e2cf3b9853bceb74632daa2bd22edb350840d91.tar.gz
emacs-0e2cf3b9853bceb74632daa2bd22edb350840d91.tar.bz2
emacs-0e2cf3b9853bceb74632daa2bd22edb350840d91.zip
* lisp/emacs-lisp/edebug.el (edebug--frame): Move docstring where it belongs
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/edebug.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el
index 365bc748741..cbc40193125 100644
--- a/lisp/emacs-lisp/edebug.el
+++ b/lisp/emacs-lisp/edebug.el
@@ -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 ()