Preserve subject when replying to patch threads. Upstream status: likely to be in the next release (bug#66330) diff --git a/debbugs-gnu.el b/debbugs-gnu.el index f366fba11d..cd549e364d 100644 --- a/debbugs-gnu.el +++ b/debbugs-gnu.el @@ -1747,6 +1747,12 @@ MERGED is the list of bugs merged with this one." (format "Re: bug#%d: %s" id (alist-get 'subject status))) (debbugs-gnu-summary-mode 1))) +(defcustom debbugs-gnu-summary-keep-subject + (rx "[PATCH" (? (0+ (not (any digit "/]"))) (1+ digit) "/" (1+ digit)) "]") + "Regular expression which keeps the original message subject in replies." + :version "29.1" + :type 'regexp) + (defvar debbugs-gnu-summary-mode-map (let ((map (make-sparse-keymap))) (define-key map "C" #'debbugs-gnu-send-control-message) @@ -1778,6 +1784,8 @@ MERGED is the list of bugs merged with this one." (cons new new)) address)))))) ,@(and debbugs-gnu-subject + (not (string-match-p debbugs-gnu-summary-keep-subject + debbugs-gnu-subject)) `((subject ,debbugs-gnu-subject))))))) (defun debbugs-gnu-guess-current-id () class='active' href='/guix/log/gnu/installer/proxy.scm'>logtreecommitdiff
path: root/gnu/installer/proxy.scm
AgeCommit message (Expand)Author
2020-12-11install: Discover local substitute servers....* gnu/installer/substitutes.scm: New file. * gnu/installer/newt/substitutes.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add them. * po/guix/POTFILES.in: Add gnu/installer/newt/substitutes.scm. * gnu/installer/proxy.scm (with-silent-shepherd): Move to ... * gnu/installer/utils.scm: ... here. * gnu/installer/record.scm (<installer>)[substitutes-page]: New field. * gnu/installer/newt.scm (substitutes-page): New procedure, (newt-installer): register it. * gnu/installer.scm (installer-steps): Add "substitutes-page" step. * gnu/system/install.scm (%installation-services): Add avahi-service-type and enable substitute server discover in guix-service-type. [<name-service-switch>]: Set it to %mdns-host-lookup-nss. Mathieu Othacehe
2020-04-08installer: Add proxy support....* gnu/installer/proxy.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add it. * po/guix/POTFILES.in: Add it. * gnu/installer/newt/parameters.scm (run-proxy-page): New procedure, (run-parameters-page): add the previous procedure to the parameters menu. Mathieu Othacehe