>From 5e47c98228eccf53b95b8a268dcaf4f43c88a35b Mon Sep 17 00:00:00 2001 From: Xiyue Deng Date: Fri, 1 Dec 2023 21:30:31 -0800 Subject: [PATCH] Fix comment in code example in kill-region implementation (Bug#67577) * doc/lispintro/emacs-lisp-intro.texi (Complete kill-region): fix comment on 'unless' being the inverse of 'if' --- doc/lispintro/emacs-lisp-intro.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index e4a0f585f69..74efd536182 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -7904,7 +7904,7 @@ The command \\[yank] can retrieve it from there. @dots{} " ;; @bullet{} Since order matters, pass point first. (interactive (list (point) (mark))) ;; @bullet{} And tell us if we cannot cut the text. - ;; 'unless' is an 'if' without a then-part. + ;; 'unless' is the inverse of 'if' without a then-part. (unless (and beg end) (error "The mark is not set now, so there is no region")) @end group -- 2.39.2