branch: scratch/rfc-mode commit ec4269cc913ac644ea5f4e56a8bf4f0041782909 Author: Nicolas Martyanoff <khae...@gmail.com> Commit: Nicolas Martyanoff <khae...@gmail.com>
fix backtab key name --- rfc-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfc-mode.el b/rfc-mode.el index 2cefd815a3..0f3e6d02a6 100644 --- a/rfc-mode.el +++ b/rfc-mode.el @@ -108,7 +108,7 @@ Assume RFC documents are named as e.g. rfc21.txt, rfc-index.txt." (set-keymap-parent map special-mode-map) (define-key map (kbd "q") 'rfc-mode-quit) (define-key map (kbd "<tab>") 'forward-button) - (define-key map (kbd "S-<tab>") 'backward-button) + (define-key map (kbd "<backtab>") 'backward-button) (define-key map (kbd "<prior>") 'rfc-mode-backward-page) (define-key map (kbd "<next>") 'rfc-mode-forward-page) (define-key map (kbd "g") 'rfc-mode-goto-section)