Skip to content

Commit

Permalink
Fix hexl max address
Browse files Browse the repository at this point in the history
  • Loading branch information
svaante committed Dec 29, 2024
1 parent c25d609 commit 4eaa7be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dape.el
Original file line number Diff line number Diff line change
Expand Up @@ -2756,7 +2756,7 @@ Using BUFFER and STR."
((not data) (message "No bytes returned from adapter"))
(t
(setq dape--memory-address address
hexl-max-address dape-memory-page-size
hexl-max-address (1- dape-memory-page-size)
buffer-undo-list nil)
(let ((address (dape--memory-address-number))
(temp-buffer (generate-new-buffer " *temp*" t))
Expand Down

0 comments on commit 4eaa7be

Please sign in to comment.