emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/mct 72a1c3e6f4 22/64: Minor changes to doc strings


From: ELPA Syncer
Subject: [elpa] externals/mct 72a1c3e6f4 22/64: Minor changes to doc strings
Date: Thu, 30 Dec 2021 23:57:54 -0500 (EST)

branch: externals/mct
commit 72a1c3e6f4d167c44ca7045099f5df0a229222f5
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Minor changes to doc strings
---
 mct.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/mct.el b/mct.el
index 5fc3658501..80c06401be 100644
--- a/mct.el
+++ b/mct.el
@@ -615,9 +615,9 @@ ARG is a numeric argument for `next-completion', as 
described in
 
 (defun mct-next-completion-or-mini (&optional arg)
   "Move to the next completion or switch to the minibuffer.
-This performs a regular motion for optional ARG lines, but when
-point can no longer move in that direction it switches to the
-minibuffer."
+This performs a regular motion for optional ARG candidates, but
+when point can no longer move in that direction it switches to
+the minibuffer."
   (interactive "p" mct-mode)
   (let ((count (or arg 1)))
     (cond
@@ -659,10 +659,10 @@ ARG is a numeric argument for `previous-completion', as 
described in
     (previous-completion (if (natnump arg) arg 1))))
 
 (defun mct-previous-completion-or-mini (&optional arg)
-  "Move to the next completion or switch to the minibuffer.
-This performs a regular motion for optional ARG lines, but when
-point can no longer move in that direction it switches to the
-minibuffer."
+  "Move to the previous completion or switch to the minibuffer.
+This performs a regular motion for optional ARG candidates, but
+when point can no longer move in that direction it switches to
+the minibuffer."
   (interactive "p" mct-mode)
   (let ((count (if (natnump arg) arg 1)))
     (cond



reply via email to

[Prev in Thread] Current Thread [Next in Thread]