branch: externals/debbugs commit 268a377e48709b8dae88f773277215472581beaf Author: Michael Albinus <michael.albi...@gmx.de> Commit: Michael Albinus <michael.albi...@gmx.de>
* debbugs-gnu.el (debbugs-gnu-use-threads): Set it to nil on macOS. (Bug#75280) * debbugs.el: Bump version to 0.43. Update copyright years --- Debbugs.wsdl | 2 +- debbugs-browse.el | 2 +- debbugs-compat.el | 2 +- debbugs-gnu.el | 6 ++++-- debbugs-guix.el | 2 +- debbugs-org.el | 2 +- debbugs-ug.texi | 2 +- debbugs.el | 4 ++-- debbugs.texi | 2 +- test/debbugs-tests.el | 2 +- 10 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Debbugs.wsdl b/Debbugs.wsdl index c25cf2f2ed..2ec0d22bd3 100644 --- a/Debbugs.wsdl +++ b/Debbugs.wsdl @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<!-- Copyright (C) 2011-2024 Free Software Foundation, Inc. +<!-- Copyright (C) 2011-2025 Free Software Foundation, Inc. This file is not part of GNU Emacs. diff --git a/debbugs-browse.el b/debbugs-browse.el index 900adec818..5fac6b8e41 100644 --- a/debbugs-browse.el +++ b/debbugs-browse.el @@ -1,6 +1,6 @@ ;; debbugs-browse.el --- browse bug URLs with debbugs-gnu or debbugs-org -*- lexical-binding:t -*- -;; Copyright (C) 2015-2024 Free Software Foundation, Inc. +;; Copyright (C) 2015-2025 Free Software Foundation, Inc. ;; Author: Michael Albinus <michael.albi...@gmx.de> ;; Keywords: comm, hypermedia, maint diff --git a/debbugs-compat.el b/debbugs-compat.el index 60ffece0db..cedbb386c9 100644 --- a/debbugs-compat.el +++ b/debbugs-compat.el @@ -1,6 +1,6 @@ ;;; debbugs-compat.el --- Compatibility library for debbugs -*- lexical-binding:t -*- -;; Copyright (C) 2022-2024 Free Software Foundation, Inc. +;; Copyright (C) 2022-2025 Free Software Foundation, Inc. ;; Author: Michael Albinus <michael.albi...@gmx.de> ;; Keywords: comm, hypermedia diff --git a/debbugs-gnu.el b/debbugs-gnu.el index 401851294d..63905b20d6 100644 --- a/debbugs-gnu.el +++ b/debbugs-gnu.el @@ -1,6 +1,6 @@ ;;; debbugs-gnu.el --- interface for the GNU bug tracker -*- lexical-binding:t -*- -;; Copyright (C) 2011-2024 Free Software Foundation, Inc. +;; Copyright (C) 2011-2025 Free Software Foundation, Inc. ;; Author: Lars Magne Ingebrigtsen <la...@gnus.org> ;; Michael Albinus <michael.albi...@gmx.de> @@ -809,7 +809,9 @@ depend on PHRASE being a string, or nil. See Info node "Which function to apply showing bug reports. Shall be bound in `debbugs-org-*' functions.") -(defcustom debbugs-gnu-use-threads (and main-thread t) +;; There is an error with threads on macOS. (Bug#75280) +(defcustom debbugs-gnu-use-threads + (and main-thread (not (eq system-type 'darwin)) t) "Whether to use threads when retrieving bugs. This doesn't apply when Emacs is compiled without threading support." :type 'boolean diff --git a/debbugs-guix.el b/debbugs-guix.el index c9ee238e71..4da787be76 100644 --- a/debbugs-guix.el +++ b/debbugs-guix.el @@ -1,6 +1,6 @@ ;;; debbugs-guix.el --- guix specific debbugs functions -*- lexical-binding: t; -*- ;; -;; Copyright (C) 2022-2024 Free Software Foundation, Inc. +;; Copyright (C) 2022-2025 Free Software Foundation, Inc. ;; Author: Joshua Branson <jbra...@dismail.de> ;; Keywords: comm, hypermedia, maint diff --git a/debbugs-org.el b/debbugs-org.el index e7a7b2892c..6cfe8b2a44 100644 --- a/debbugs-org.el +++ b/debbugs-org.el @@ -1,6 +1,6 @@ ;;; debbugs-org.el --- Org-mode interface for the GNU bug tracker -*- lexical-binding:t -*- -;; Copyright (C) 2013-2024 Free Software Foundation, Inc. +;; Copyright (C) 2013-2025 Free Software Foundation, Inc. ;; Author: Michael Albinus <michael.albi...@gmx.de> ;; Keywords: comm, hypermedia, maint, outlines diff --git a/debbugs-ug.texi b/debbugs-ug.texi index 7a8b7cca14..0cd89177ce 100644 --- a/debbugs-ug.texi +++ b/debbugs-ug.texi @@ -8,7 +8,7 @@ @end direntry @copying -Copyright @copyright{} 2015-2024 Free Software Foundation, Inc. +Copyright @copyright{} 2015--2025 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/debbugs.el b/debbugs.el index ce01f4f247..5ab1dfc4ba 100644 --- a/debbugs.el +++ b/debbugs.el @@ -1,11 +1,11 @@ ;;; debbugs.el --- SOAP library to access debbugs servers -*- lexical-binding:t -*- -;; Copyright (C) 2011-2024 Free Software Foundation, Inc. +;; Copyright (C) 2011-2025 Free Software Foundation, Inc. ;; Author: Michael Albinus <michael.albi...@gmx.de> ;; Keywords: comm, hypermedia ;; Package: debbugs -;; Version: 0.42 +;; Version: 0.43 ;; Package-Requires: ((emacs "26.1") (soap-client "3.1.5")) ;; This file is not part of GNU Emacs. diff --git a/debbugs.texi b/debbugs.texi index 5ea45eed27..d682077ee0 100644 --- a/debbugs.texi +++ b/debbugs.texi @@ -8,7 +8,7 @@ @end direntry @copying -Copyright @copyright{} 2011-2024 Free Software Foundation, Inc. +Copyright @copyright{} 2011--2025 Free Software Foundation, Inc. @quotation Permission is granted to copy, distribute and/or modify this document diff --git a/test/debbugs-tests.el b/test/debbugs-tests.el index b4ac9a69c4..ce6489ca39 100644 --- a/test/debbugs-tests.el +++ b/test/debbugs-tests.el @@ -1,6 +1,6 @@ ;;; debbugs-tests.el --- tests for debbugs.el -*- lexical-binding: t; -*- -;; Copyright (C) 2024 Free Software Foundation, Inc. +;; Copyright (C) 2024-2025 Free Software Foundation, Inc. ;; Author: Morgan Smith <morgan.j.sm...@outlook.com> ;; Package: debbugs