[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm 9f65c9c5cc 1/2: Fix comments
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm 9f65c9c5cc 1/2: Fix comments |
Date: |
Tue, 26 Dec 2023 03:59:41 -0500 (EST) |
branch: elpa/helm
commit 9f65c9c5cc0e7f616f9e64aa3d24ced3f89b2e99
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Fix comments
---
helm-lib.el | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/helm-lib.el b/helm-lib.el
index 471b905755..a087d54c65 100644
--- a/helm-lib.el
+++ b/helm-lib.el
@@ -445,13 +445,13 @@ Like `this-command' but return the real command, and not
(cl-loop for count from 1 to 50
for btf = (backtrace-frame count)
for fn = (cl-second btf)
- ;; Some commands like `kill-buffer' involve another function
+ ;; Some commands like `kill-buffer' may call another function
;; involving a completing-read, in this case we want to stop at this
;; function and not go up to the initial interactive call (in this
- ;; case kill-buffer).
+ ;; case kill-buffer) See Issue#2634.
if (or (memq fn helm-this-command-functions)
(and
- ;; In some case we may have in the way an
+ ;; In some cases we may have in the way an
;; advice compiled resulting in byte-code,
;; ignore it (Bug#691).
(symbolp fn)