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

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

[elpa] externals/debbugs 5c40395: Don't set tag "fixed"


From: Michael Albinus
Subject: [elpa] externals/debbugs 5c40395: Don't set tag "fixed"
Date: Mon, 19 Apr 2021 10:22:30 -0400 (EDT)

branch: externals/debbugs
commit 5c4039534609603e279c42e1ea390308559fce37
Author: Michael Albinus <michael.albinus@gmx.de>
Commit: Michael Albinus <michael.albinus@gmx.de>

    Don't set tag "fixed"
    
    * debbugs.el: Bump version to 0.28.
    
    * debbugs-gnu.el (debbugs-gnu-send-control-message): Fix docstring.
    (debbugs-gnu-make-control-message): Fix docstring.  Message "done"
    does not set a tag.
    
    * debbugs-ug.texi (Control Messages): Message "done" does not set
    a tag.
    
    * .gitignore: Add *.info
---
 .gitignore      |  1 +
 debbugs-gnu.el  | 12 +++---------
 debbugs-ug.texi |  6 +++---
 debbugs.el      |  2 +-
 4 files changed, 8 insertions(+), 13 deletions(-)

diff --git a/.gitignore b/.gitignore
index 0b49856..6cccf63 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
 /debbugs-pkg.el
 /debbugs-autoloads.el
 *.elc
+*.info
diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index 0a11a64..e2a909f 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -1758,9 +1758,7 @@ returned by `debbugs-gnu-bugs'."
 
 (defun debbugs-gnu-send-control-message (message &optional reverse)
   "Send a control message for the current bug report.
-You can set the severity or add a tag, or close the report.  If
-you use the special \"done\" MESSAGE, the report will be marked as
-fixed, and then closed.
+You can set the severity or add a tag, or close the report.
 
 If given a prefix, and given a tag to set, the tag will be
 removed instead."
@@ -1813,9 +1811,7 @@ Otherwise, the version is queried for bugs whose package 
is
 When called interactively, choose the current buffer if it is in
 `message-mode', or create a new buffer otherwise.
 
-You can set the severity or add a tag, or close the report.  If
-you use the special \"done\" MESSAGE, the report will be marked as
-fixed, and then closed.
+You can set the severity or add a tag, or close the report.
 
 If given a prefix, and given a tag to set, the tag will be
 removed instead."
@@ -1935,10 +1931,8 @@ removed instead."
            "Package(s): " debbugs-gnu-all-packages nil nil
            (string-join (alist-get 'package status) ","))
           ",")))
-        ((equal message "close")
+        ((member message '("close" "done"))
          (format "close %d %s\n" bugid version))
-        ((equal message "done")
-         (format "tags %d fixed\nclose %d %s\n" bugid bugid version))
         ((member message '("found" "notfound" "fixed" "notfixed"))
          (format "%s %d %s\n" message bugid version))
         ((member message '("donenotabug" "donewontfix"
diff --git a/debbugs-ug.texi b/debbugs-ug.texi
index bef297e..6217ce4 100644
--- a/debbugs-ug.texi
+++ b/debbugs-ug.texi
@@ -613,6 +613,7 @@ The second bug number is read interactively.  It could be 
also a list
 of comma-separated bug numbers.
 
 @item close
+@itemx done
 "close 12345 25.1"
 
 The second argument, the Emacs version, is read interactively if the
@@ -637,11 +638,10 @@ If the command invoking the control message has been 
prefixed with
 
 "tags 12345 - confirmed"
 
-@item done
-@itemx donenotabug
+@item donenotabug
 @itemx doneunreproducible
 @itemx donewontfix
-"tags 12345 fixed|notabug|unreproducible|wontfix" @*
+"tags 12345 notabug|unreproducible|wontfix" @*
 "close 12345 25.1"
 
 The second argument in the close message, the Emacs version, is read
diff --git a/debbugs.el b/debbugs.el
index a9d2b2f..6aa98a1 100644
--- a/debbugs.el
+++ b/debbugs.el
@@ -5,7 +5,7 @@
 ;; Author: Michael Albinus <michael.albinus@gmx.de>
 ;; Keywords: comm, hypermedia
 ;; Package: debbugs
-;; Version: 0.27
+;; Version: 0.28
 ;; Package-Requires: ((emacs "25.1") (soap-client "3.1.5"))
 
 ;; This file is not part of GNU Emacs.



reply via email to

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