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

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

[elpa] externals/debbugs 42d8bd5 065/311: Allow sending bug control mess


From: Stefan Monnier
Subject: [elpa] externals/debbugs 42d8bd5 065/311: Allow sending bug control messages from random modes.
Date: Sun, 29 Nov 2020 18:41:41 -0500 (EST)

branch: externals/debbugs
commit 42d8bd512302760dd83b3e9f568e271384c0430e
Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
Commit: Lars Magne Ingebrigtsen <larsi@gnus.org>

    Allow sending bug control messages from random modes.
    
    * debbugs-gnu.el (debbugs-guess-current-id): New function.
    (debbugs-gnu-send-control-message): Use it.
---
 ChangeLog      |  5 +++++
 debbugs-gnu.el | 13 ++++++++++++-
 2 files changed, 17 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 342be83..e5d30bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * debbugs-gnu.el (debbugs-guess-current-id): New function.
+       (debbugs-gnu-send-control-message): Use it.
+
 2011-07-19  Michael Albinus  <michael.albinus@gmx.de>
 
        * debbugs-gnu.el (debbugs-gnu-default-suppress-bugs): New customer
diff --git a/debbugs-gnu.el b/debbugs-gnu.el
index d592d33..60c8939 100644
--- a/debbugs-gnu.el
+++ b/debbugs-gnu.el
@@ -337,7 +337,6 @@ expression matchin the corresponding value, a string."
   (debbugs-gnu-mode)
   (let ((inhibit-read-only t)
        (debbugs-port "gnu.org"))
-
     (erase-buffer)
     (set (make-local-variable 'debbugs-gnu-current-widget)
         widget)
@@ -732,6 +731,17 @@ The following commands are available:
             ;; `message-simplify-subject'.  So we cannot use m-s-s.
             (setq subject ,debbugs-gnu-subject)))))))
 
+(defun debbugs-guess-current-id ()
+  "Guess the ID based on \"#23\"."
+  (save-excursion
+    (beginning-of-line)
+    (and
+     (or (re-search-forward "#\\([0-9]+\\)" (line-end-position) t)
+        (progn
+          (goto-char (point-min))
+          (re-search-forward "#\\([0-9]+\\)" nil t)))
+     (string-to-number (match-string 1)))))
+
 (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
@@ -754,6 +764,7 @@ removed instead."
          nil t)
         current-prefix-arg))
   (let* ((id (or debbugs-gnu-bug-number        ; Set on group entry.
+                (debbugs-guess-current-id)
                 (debbugs-gnu-current-id)))
         (version
          (when (member message '("close" "done"))



reply via email to

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