emacs-devel
[Top][All Lists]
Advanced

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

[PATCH v3] Improve find-sibling-rules option type


From: Paul W. Rankin
Subject: [PATCH v3] Improve find-sibling-rules option type
Date: Mon, 2 Oct 2023 14:54:57 +1000

* lisp/files.el (find-sibling-rules): use alist with tags for custom
  type
---
v3, make alist value a repeating string type.


 lisp/files.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/files.el b/lisp/files.el
index 9d76668..eceed75 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -7572,7 +7572,8 @@ find-sibling-rules
 In this example, if you're in \"src/emacs/emacs-27/lisp/abbrev.el\",
 and a \"src/emacs/emacs-28/lisp/abbrev.el\" file exists, it's now
 defined as a sibling."
-  :type 'sexp
+  :type '(alist :key-type (regexp :tag "Match")
+                :value-type (repeat (string :tag "Expansion")))
   :version "29.1")
 
 (defun find-sibling-file (file)
-- 
2.42.0




reply via email to

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