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

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

[ELPA-diffs] ELPA branch, master, updated. 802d967f62aaf6b9544569ee271d6


From: Michael Albinus
Subject: [ELPA-diffs] ELPA branch, master, updated. 802d967f62aaf6b9544569ee271d6e991a2772d8
Date: Thu, 09 Jan 2014 11:35:03 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "ELPA".

The branch, master has been updated
       via  802d967f62aaf6b9544569ee271d6e991a2772d8 (commit)
       via  15903fd411620142793d3d72f7dc21a0c0b64363 (commit)
      from  0bde9b0c74c8e1d14c5a11458549f80b2a371c36 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 802d967f62aaf6b9544569ee271d6e991a2772d8
Author: Michael Albinus <address@hidden>
Date:   Thu Jan 9 12:34:11 2014 +0100

    * debbugs-gnu.el (debbugs-gnu-default-packages): Add new packages.
    (debbugs-gnu): Fix docstring.

diff --git a/packages/debbugs/debbugs-gnu.el b/packages/debbugs/debbugs-gnu.el
index d59fab7..8fc548f 100644
--- a/packages/debbugs/debbugs-gnu.el
+++ b/packages/debbugs/debbugs-gnu.el
@@ -177,6 +177,7 @@
   :type '(set (const "automake")
              (const "cc-mode")
              (const "coreutils")
+             (const "cppi")
              (const "debbugs.gnu.org")
              (const "diffutils")
              (const "emacs")
@@ -187,10 +188,12 @@
              (const "guile")
              (const "guix")
              (const "gzip")
+             (const "idutils")
              (const "libtool")
              (const "ns")
              (const "org-mode")
              (const "parted")
+             (const "vc-dwim")
              (const "w32")
              (const "woodchuck"))
   :version "24.4")
@@ -425,7 +428,7 @@ marked as \"client-side filter\"."
 
 ;;;###autoload
 (defun debbugs-gnu (severities &optional packages archivedp suppress tags)
-  "List all outstanding Emacs bugs."
+  "List all outstanding bugs."
   (interactive
    (let (severities archivedp)
      (list

commit 15903fd411620142793d3d72f7dc21a0c0b64363
Author: Michael Albinus <address@hidden>
Date:   Thu Jan 9 12:32:47 2014 +0100

    * debbugs-org.el (debbugs-org-show-buffer-name): New defvar.
    (debbugs-org, debbugs-org-show-reports)
    (debbugs-org-show-next-reports, debbugs-org-mode): Use it.
        (debbugs-org-regenerate-status): Fix docstring.

diff --git a/packages/debbugs/debbugs-org.el b/packages/debbugs/debbugs-org.el
index e2f39ca..a85cbbc 100644
--- a/packages/debbugs/debbugs-org.el
+++ b/packages/debbugs/debbugs-org.el
@@ -54,8 +54,9 @@
 ;; given, locally tagged bugs are shown.
 
 ;; If a prefix is given to the command, more search parameters are
-;; asked for, like packages (also a comma separated list, "org-mode" is
-;; the default), or whether archived bugs shall be shown.
+;; asked for, like packages (also a comma separated list, "emacs" is
+;; the default), whether archived bugs shall be shown, and whether
+;; closed bugs shall be shown.
 
 ;; Another command is
 ;;
@@ -127,6 +128,10 @@
 (defvar debbugs-org-ids nil
   "The list of bug ids to be shown following the elisp link.")
 
+(defvar debbugs-org-show-buffer-name "*Org Bugs*"
+  "The buffer name we present the bug reports.
+This could be a temporary buffer, or a buffer linked with a file.")
+
 ;;;###autoload
 (defun debbugs-org-search ()
   "Search for bugs interactively.
@@ -245,7 +250,7 @@ returned."
     (when (not (zerop (length tag)))
       (add-to-list 'debbugs-gnu-current-query (cons 'tag tag))))
 
-  (with-current-buffer (get-buffer-create "*Org Bugs*")
+  (with-current-buffer (get-buffer-create debbugs-org-show-buffer-name)
     (erase-buffer))
 
   (unwind-protect
@@ -271,7 +276,7 @@ returned."
 
 (defun debbugs-org-show-reports (bug-numbers)
   "Show bug reports as given in BUG-NUMBERS."
-  (pop-to-buffer (get-buffer-create "*Org Bugs*"))
+  (pop-to-buffer (get-buffer-create debbugs-org-show-buffer-name))
   (org-mode)
   (debbugs-org-mode 1)
   ;; FIXME: Does not show any effect.
@@ -371,7 +376,7 @@ returned."
   "Regenerate the `tabulated-list-id' text property.
 This property is used when following the [Messages] link, so you
 need to regenerate it when opening an .org file after you killed
-the corresponding buffer (e.g. by closing Emacs.)"
+the corresponding buffer (e.g. by closing Emacs)."
   (save-excursion
     (goto-char (point-min))
     (while (re-search-forward ":DEBBUGS_ID:[ \t]*\\([0-9]+\\)" nil t)
@@ -386,7 +391,7 @@ the corresponding buffer (e.g. by closing Emacs.)"
 
 (defun debbugs-org-show-next-reports (hits)
   "Show next HITS of bug reports."
-  (with-current-buffer (get-buffer-create "*Org Bugs*")
+  (with-current-buffer (get-buffer-create debbugs-org-show-buffer-name)
     (save-excursion
       (goto-char (point-max))
       (forward-line -1)
@@ -419,6 +424,8 @@ the corresponding buffer (e.g. by closing Emacs.)"
 
 \\{debbugs-org-mode-map}"
   :lighter " Debbugs" :keymap debbugs-org-mode-map
+  (set (make-local-variable 'debbugs-org-show-buffer-name)
+       (if buffer-file-name (buffer-name) debbugs-org-show-buffer-name))
   (set (make-local-variable 'gnus-posting-styles)
        `((".*"
          (eval

-----------------------------------------------------------------------

Summary of changes:
 packages/debbugs/debbugs-gnu.el |    5 ++++-
 packages/debbugs/debbugs-org.el |   19 +++++++++++++------
 2 files changed, 17 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
ELPA



reply via email to

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