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

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

[elpa] externals/vc-hgcmd d044448: Fix docstrings for shelve-pop funcs (


From: ELPA Syncer
Subject: [elpa] externals/vc-hgcmd d044448: Fix docstrings for shelve-pop funcs (Fix #4)
Date: Thu, 21 Oct 2021 13:57:38 -0400 (EDT)

branch: externals/vc-hgcmd
commit d044448965d31ca8214f8bca48487e4d9b9d9a0f
Author: muffinmad <andreyk.mad@gmail.com>
Commit: muffinmad <andreyk.mad@gmail.com>

    Fix docstrings for shelve-pop funcs (Fix #4)
    
    * vc-hgcmd.el (vc-hgcmd-shelve-pop)
    (vc-hgcmd-shelve-pop-at-point): Update docstrings.
---
 vc-hgcmd.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/vc-hgcmd.el b/vc-hgcmd.el
index e051a76..5a2d2fe 100644
--- a/vc-hgcmd.el
+++ b/vc-hgcmd.el
@@ -5,7 +5,7 @@
 ;; Author: Andrii Kolomoiets <andreyk.mad@gmail.com>
 ;; Keywords: vc
 ;; URL: https://github.com/muffinmad/emacs-vc-hgcmd
-;; Package-Version: 1.14
+;; Package-Version: 1.14.1
 ;; Package-Requires: ((emacs "25.1"))
 
 ;; This file is NOT part of GNU Emacs.
@@ -909,14 +909,14 @@ Insert output to process buffer and check if amount of 
data is enought to parse
   (vc-hgcmd-shelve-apply (vc-hgcmd-shelve-name-at-point)))
 
 (defun vc-hgcmd-shelve-pop (name)
-  "Unshelve and keep shelve with NAME."
+  "Unshelve and remove shelve with NAME."
   (interactive (list (vc-hgcmd-shelve-read "Apply and remove shelve: ")))
   (when name
     (vc-hgcmd-command "unshelve" name)
     (vc-dir-refresh)))
 
 (defun vc-hgcmd-shelve-pop-at-point ()
-  "Unshelve and keep shelve at point."
+  "Unshelve and remove shelve at point."
   (interactive)
   (vc-hgcmd-shelve-pop (vc-hgcmd-shelve-name-at-point)))
 



reply via email to

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