From 7f4dd458993ba7fa8542490ed5dcc13d2a8fff6b Mon Sep 17 00:00:00 2001 From: sakurawald Date: Wed, 11 Dec 2024 09:48:00 +0800 Subject: [PATCH] fix: typo in comment --- extensions/paredit-mode/paredit-mode.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/paredit-mode/paredit-mode.lisp b/extensions/paredit-mode/paredit-mode.lisp index fcbe0b530..705c95feb 100644 --- a/extensions/paredit-mode/paredit-mode.lisp +++ b/extensions/paredit-mode/paredit-mode.lisp @@ -562,7 +562,7 @@ link : http://www.daregada.sakuraweb.com/paredit_tutorial_ja.html (defun %paredit-wrap (begin-char end-char) - ;; FIXME: the buffer-mark-p always be nil for marks that set by vi-mode. (The mark state in vi-mode and emacs-mode is not set. + ;; FIXME: the buffer-mark-p always be nil for marks that set by vi-mode. (The mark state in vi-mode and emacs-mode is not synced.) (if (buffer-mark-p (current-buffer)) (with-point ((begin (region-beginning (current-buffer))) (end (region-end (current-buffer))))