emacs: fix accents

This commit is contained in:
Pavel Korytov 2024-08-25 23:37:53 +03:00
parent e2097bb665
commit 5aa893e508
2 changed files with 2 additions and 0 deletions

View file

@ -584,6 +584,7 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer."
(defun my/accent (arg)
(interactive "P")
(require 'accent)
(message "%s" arg)
(let* ((after? (eq accent-position 'after))
(char (if after? (char-after) (char-before)))

View file

@ -1051,6 +1051,7 @@ Input accented characters.
(defun my/accent (arg)
(interactive "P")
(require 'accent)
(message "%s" arg)
(let* ((after? (eq accent-position 'after))
(char (if after? (char-after) (char-before)))