From debbugs-submit-bounces@debbugs.gnu.org Thu May 14 15:13:47 2020 Received: (at submit) by debbugs.gnu.org; 14 May 2020 19:13:47 +0000 Received: from localhost ([127.0.0.1]:34900 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jZJIh-0001Sr-0h for submit@debbugs.gnu.org; Thu, 14 May 2020 15:13:47 -0400 Received: from lists.gnu.org ([209.51.188.17]:49268) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jZJIb-0001S3-MM for submit@debbugs.gnu.org; Thu, 14 May 2020 15:13:42 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56370) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jZJIb-0005rt-Hs for bug-gnu-emacs@gnu.org; Thu, 14 May 2020 15:13:41 -0400 Received: from mail.hostpark.net ([212.243.197.30]:50326) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jZJIV-0005PM-EX for bug-gnu-emacs@gnu.org; Thu, 14 May 2020 15:13:41 -0400 Received: from localhost (localhost [127.0.0.1]) by mail.hostpark.net (Postfix) with ESMTP id 5F63D166D2 for ; Thu, 14 May 2020 21:13:27 +0200 (CEST) X-Virus-Scanned: by Hostpark/NetZone Mailprotection at hostpark.net Received: from mail.hostpark.net ([127.0.0.1]) by localhost (mail0.hostpark.net [127.0.0.1]) (amavisd-new, port 10124) with ESMTP id DW6i5xNW2c0D for ; Thu, 14 May 2020 21:13:26 +0200 (CEST) Received: from customer (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.hostpark.net (Postfix) with ESMTPSA id 5D962166BD for ; Thu, 14 May 2020 21:13:26 +0200 (CEST) From: Jonas Bernoulli To: bug-gnu-emacs@gnu.org Subject: [PATCH 5/9] Improve and add doc-strings Date: Thu, 14 May 2020 21:13:21 +0200 Message-Id: <20200514191325.22061-6-jonas@bernoul.li> X-Mailer: git-send-email 2.26.0 In-Reply-To: <20200514191325.22061-1-jonas@bernoul.li> References: <20200514191325.22061-1-jonas@bernoul.li> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=212.243.197.30; envelope-from=jonas@bernoul.li; helo=mail.hostpark.net X-detected-operating-system: by eggs.gnu.org: First seen = 2020/05/14 15:13:27 X-ACL-Warn: Detected OS = ??? X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) * lisp/epa-file.el (epa-file-select-keys), lisp/epa-hook.el (epa-file-name-regexp), lisp/epa.el (epa-exit-buffer): Improve doc-string. * lisp/epa-hook.el (epa-file-name-regexp-update): Add doc-string. --- lisp/epa-file.el | 4 ++-- lisp/epa-hook.el | 11 +++++++---- lisp/epa.el | 3 +-- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/lisp/epa-file.el b/lisp/epa-file.el index 43399d2852..ede7177054 100644 --- a/lisp/epa-file.el +++ b/lisp/epa-file.el @@ -43,9 +43,9 @@ epa-file-cache-passphrase-for-symmetric-encryption (defcustom epa-file-select-keys nil "Control whether or not to pop up the key selection dialog. -If t, always asks user to select recipients. +If t, always ask user to select recipients. If nil, query user only when `epa-file-encrypt-to' is not set. -If neither t nor nil, doesn't ask user. In this case, symmetric +If neither t nor nil, don't ask user. In this case, symmetric encryption is used." :type '(choice (const :tag "Ask always" t) (const :tag "Ask when recipients are not set" nil) diff --git a/lisp/epa-hook.el b/lisp/epa-hook.el index 002f46ad27..6f12f8a6bf 100644 --- a/lisp/epa-hook.el +++ b/lisp/epa-hook.el @@ -36,10 +36,10 @@ epa-file--file-name-regexp-set (defcustom epa-file-name-regexp (purecopy "\\.gpg\\(~\\|\\.~[0-9]+~\\)?\\'") "Regexp which matches filenames to be encrypted with GnuPG. -If you set this outside Custom while epa-file is already enabled, you -have to call `epa-file-name-regexp-update' after setting it to -properly update file-name-handler-alist. Setting this through Custom -does that automatically." +If you set this outside Custom while epa-file is already enabled, +you have to call `epa-file-name-regexp-update' after setting it +to properly update `file-name-handler-alist'. Setting this +through Custom does that automatically." :type 'regexp :group 'epa-file :set 'epa-file--file-name-regexp-set) @@ -73,6 +73,9 @@ epa-file-auto-mode-alist-entry (list epa-file-name-regexp nil 'epa-file)) (defun epa-file-name-regexp-update () + "Update `file-name-handler-alist' after configuring outside Custom. +After setting `epa-file-name-regexp-update' outside the Custom +interface, update `file-name-handler-alist'." (interactive) (unless (equal (car epa-file-handler) epa-file-name-regexp) (setcar epa-file-handler epa-file-name-regexp))) diff --git a/lisp/epa.el b/lisp/epa.el index 62a4941f9d..b06b0ac8e4 100644 --- a/lisp/epa.el +++ b/lisp/epa.el @@ -347,8 +347,7 @@ epa-unmark-key ;;;; Quitting (defun epa-exit-buffer () - "Exit the current buffer. -`epa-exit-buffer-function' is called if it is set." + "Exit the current buffer using `epa-exit-buffer-function'." (interactive) (funcall epa-exit-buffer-function)) -- 2.26.0 From debbugs-submit-bounces@debbugs.gnu.org Thu May 14 18:13:21 2020 Received: (at control) by debbugs.gnu.org; 14 May 2020 22:13:21 +0000 Received: from localhost ([127.0.0.1]:35141 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jZM6T-0006jR-5e for submit@debbugs.gnu.org; Thu, 14 May 2020 18:13:21 -0400 Received: from mail-yb1-f174.google.com ([209.85.219.174]:35642) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1jZM6R-0006jB-QR for control@debbugs.gnu.org; Thu, 14 May 2020 18:13:20 -0400 Received: by mail-yb1-f174.google.com with SMTP id o134so91503ybg.2 for ; Thu, 14 May 2020 15:13:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:mime-version:date:message-id:subject:to; bh=9XTM1nbijf8bjzMiISaZqr5wuvD1aLIesA7dzLTrY14=; b=IiutqSzF694J2E0euEOm5JBWqRVLXLjEOmaqd16S0C2otxeyR/5pkX5HugrxfOPLYk XdUbq6JyG2DHTDCaMKnqIJzvVmbMC5x5pggJwexC7/iqlCNW1h0hxv7llet0z9Rhf0F1 wpdL8j8gNcolua6zTO/cf/vc3Eg5HP/SQtdHABTLsIGhfmM+wm2xdml2OkmpIjNX8iY/ SDyIYodfQ/cut2DgzRgVl48MHbvmzvHyvQm1SBzbJt7n+x9rV+qKlkdRgyQ7tEzDbvA0 0FabnB/QIMDYU8Jb9zaxr4J/XSuknBHzUvNxwkcwgkGX3RYdWiMiE1sPUXBe6k2Ifzrm gvRg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:mime-version:date:message-id:subject:to; bh=9XTM1nbijf8bjzMiISaZqr5wuvD1aLIesA7dzLTrY14=; b=tS/PSWvA8/TAAY5bBgXntq+oLSRSsqTIvS7hNVUNUXTgVO32fR6IDYzK8PFHFMJJkP k4Ye+Vm4aP8vmslCPUeZTxbFx6dFCWY9wmeGLCBBQyME6g3ttqI0Fgt3+Sv9Kp4wiVIj 5H2E867t3soJf8bA1D0XRdAbF6DjDnpTzG4hEV/jnD9pfENQwDL5SlgHXQDNOu/8pKfo LFlzthHLi+s2IuIHB+AlgpQRV1oM1nEou/0xLOM0/b21bxrG1yMCO25sX+Kkkt10s4xe VUi6x2Hud88wkF4qwkhN8YpSa8H4SnkkFLiaffd+cMR7PBeASIvXJXygvENfv4ieKhPs EjGg== X-Gm-Message-State: AOAM531SYmq/y7O/fMPYEMLkWmj+cHjSJqq57KLtnKgcELBfxb2YthSv ANwxaKdW2Iv0+aHr8/B1usdcV/n+2ubTflQjghChVA== X-Google-Smtp-Source: ABdhPJz3YcafrW3delCPylHMf1R4zSxhNVMXiqocJSJEW8UunLBDXP38ZRcTd5RHX5UvMugbxd6uRtE8WKaX3Gs/6i0= X-Received: by 2002:a25:ad4c:: with SMTP id l12mr697216ybe.389.1589494393971; Thu, 14 May 2020 15:13:13 -0700 (PDT) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Thu, 14 May 2020 15:13:13 -0700 From: Stefan Kangas MIME-Version: 1.0 Date: Thu, 14 May 2020 15:13:13 -0700 Message-ID: Subject: merge bugs To: control@debbugs.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) forcemerge 41276 41268 forcemerge 41276 41269 forcemerge 41276 41270 forcemerge 41276 41271 forcemerge 41276 41272 forcemerge 41276 41273 forcemerge 41276 41274 forcemerge 41276 41275 forcemerge 41276 41277 thanks From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 06 03:26:37 2020 Received: (at control) by debbugs.gnu.org; 6 Aug 2020 07:26:37 +0000 Received: from localhost ([127.0.0.1]:53004 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k3aIP-0003OJ-44 for submit@debbugs.gnu.org; Thu, 06 Aug 2020 03:26:37 -0400 Received: from quimby.gnus.org ([95.216.78.240]:50462) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k3aIN-0003O5-U5 for control@debbugs.gnu.org; Thu, 06 Aug 2020 03:26:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Ro3VbEReJMrsQLVgNCCZOW72n0NoAyAM66R44XNC/QM=; b=pjtluj4Lq35IG8FPyPIY/QejtM br9EZFWKC6WWSH2bP9Z3Kply4HxfZlHTQ4IkudmDaLH3dR9pUvTkXz+3ntxUR04wU6zSWYsSDfUJ/ TCh9ErsBAi4ic4oeu82mTM/wU/57kglEIzGZYAQVCax0QqinlPTSvSFZG5XnyVuAGYlE=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k3aIG-0006yr-6U for control@debbugs.gnu.org; Thu, 06 Aug 2020 09:26:30 +0200 Date: Thu, 06 Aug 2020 09:26:27 +0200 Message-Id: <87o8nofd5o.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #41276 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 41276 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 41276 quit From unknown Fri Jun 20 20:04:32 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 03 Sep 2020 11:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator