diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-13 19:07:09 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-13 19:07:26 +0200 |
commit | 4b8ed3bf044520cdfdbac1955ea56ea0f95fcfef (patch) | |
tree | d6f2ebf96f57078db0c6065699cf555e03c4bdbd | |
parent | 51352ce53d0c7e80947c5a355976de07a1449aad (diff) |
update profile note: subst cmd keys
-rw-r--r-- | lisp/mastodon-profile.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 233eb15..8f38a52 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -254,7 +254,8 @@ NO-REBLOGS means do not display boosts in statuses." (note (alist-get 'note source)) (buffer (get-buffer-create "*mastodon-update-profile*")) (inhibit-read-only t) - (msg-str "Edit your profile note. C-c C-c to send, C-c C-k to cancel.")) + (msg-str (substitute-command-keys + "Edit your profile note. \\`C-c C-c' to send, \\`C-c C-k' to cancel."))) (switch-to-buffer-other-window buffer) (text-mode) (mastodon-tl--set-buffer-spec (buffer-name buffer) "accounts/verify_credentials" nil) |