Skip to content

Commit

Permalink
Fix breakpoint type alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
svaante committed Oct 6, 2024
1 parent 2694269 commit abfa467
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dape.el
Original file line number Diff line number Diff line change
Expand Up @@ -3656,10 +3656,10 @@ displayed."
(propertize "y" 'font-lock-face 'font-lock-warning-face)
(propertize "n" 'font-lock-face 'font-lock-doc-face)))
(pcase (dape--breakpoint-type breakpoint)
('log "Log ") ;; Manual type column alignment
('hits "Hits ")
('log "Log ")
('hits "Hits ")
('expression "Cond ")
(_ "Break"))
(_ "Break"))
(pcase buffer-or-path
((and buffer (pred bufferp))
(concat
Expand All @@ -3680,7 +3680,7 @@ displayed."
(gdb-table-add-row
table
(list (propertize "y" 'font-lock-face 'font-lock-warning-face)
"Data"
"Data "
(format "%s %s %s"
(propertize
(plist-get plist :name)
Expand Down

0 comments on commit abfa467

Please sign in to comment.