]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/backtrace.el (backtrace--change-button-skip): Typo)
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 14 Jul 2023 01:51:03 +0000 (21:51 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 14 Jul 2023 01:51:23 +0000 (21:51 -0400)
lisp/emacs-lisp/backtrace.el

index af06577fe56b5a4d2b6d5cec1c2711c212441c62..1beeb523f08a0668e32784967c6845fb616505b7 100644 (file)
@@ -413,12 +413,12 @@ the buffer."
       (overlay-put o 'evaporate t))))
 
 (defun backtrace--change-button-skip (beg end value)
-  "Change the skip property on all buttons between BEG and END.
+  "Change the `skip' property on all buttons between BEG and END.
 Set it to VALUE unless the button is a `cl-print-ellipsis' button."
   (let ((inhibit-read-only t))
     (setq beg (next-button beg))
     (while (and beg (< beg end))
-      (unless (eq (button-type beg) cl-print-ellipsis)
+      (unless (eq (button-type beg) 'cl-print-ellipsis)
           (button-put beg 'skip value))
       (setq beg (next-button beg)))))