Announce the unused register the position is stored in.

This commit is contained in:
tastytea 2020-03-19 16:17:34 +01:00
parent 892b368b23
commit 24a23cbcee
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 3 additions and 1 deletions

View File

@ -242,7 +242,9 @@ Searches the range between
(not (> char end)))
(cl-incf char))
(if (<= char end)
(point-to-register char)
(progn
(point-to-register char)
(message "Position stored in register %c." char))
(message "No unused register in the range %c - %c found." begin end))))
(provide 'register-quicknav)