all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Mauro Aranda <maurooaranda@gmail.com>
To: 65977@debbugs.gnu.org
Subject: bug#65977: 30.0.50; save-place-ignore-files-regexp missing choice
Date: Thu, 14 Sep 2023 08:25:55 -0300	[thread overview]
Message-ID: <4b90d76a-e1a4-9fd6-93a1-c9ef014533fd@gmail.com> (raw)
In-Reply-To: <b693e098-5488-540d-67c2-917c4166c1c9@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 39 bytes --]

tags 65977 patch
quit


Patch attached.

[-- Attachment #2: 0001-Fix-defcustom-in-saveplace.el-Bug-65977.patch --]
[-- Type: text/x-patch, Size: 889 bytes --]

From be7e28d90e5b0d0a03a6bbd54e5ec9cc915cbe6e Mon Sep 17 00:00:00 2001
From: Mauro Aranda <maurooaranda@gmail.com>
Date: Thu, 14 Sep 2023 08:24:43 -0300
Subject: [PATCH] Fix defcustom in saveplace.el (Bug#65977)

* lisp/saveplace.el (save-place-ignore-files-regexp): Allow nil.
---
 lisp/saveplace.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/saveplace.el b/lisp/saveplace.el
index a28de6f63a8..9004d489e9a 100644
--- a/lisp/saveplace.el
+++ b/lisp/saveplace.el
@@ -201,7 +201,8 @@ save-place-ignore-files-regexp
 automatically created by the VCS.  If set to nil, this feature is
 disabled, i.e., the position is recorded for all files."
   :version "24.1"
-  :type 'regexp)
+  :type '(choice (const :tag "Record position for all files" nil)
+                 regexp))
 
 (declare-function dired-current-directory "dired" (&optional localp))
 
-- 
2.34.1


  reply	other threads:[~2023-09-14 11:25 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-14 11:23 bug#65977: 30.0.50; save-place-ignore-files-regexp missing choice Mauro Aranda
2023-09-14 11:25 ` Mauro Aranda [this message]
2023-09-14 13:18   ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4b90d76a-e1a4-9fd6-93a1-c9ef014533fd@gmail.com \
    --to=maurooaranda@gmail.com \
    --cc=65977@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.