]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/emacs-lisp/rx.el: Don't set indentation prop for `repeat`.
authorMattias Engdegård <mattiase@acm.org>
Thu, 30 Jun 2022 13:19:15 +0000 (15:19 +0200)
committerMattias Engdegård <mattiase@acm.org>
Thu, 30 Jun 2022 13:19:15 +0000 (15:19 +0200)
lisp/emacs-lisp/rx.el

index 182e48d78564f8fd1a80af0e8aa82ded4855cdb8..18eb168a70a5eaf4c619f50bde454f137493e0a8 100644 (file)
@@ -1113,11 +1113,10 @@ can expand to any number of values."
 ;; Declare Lisp indentation rules for constructs that take 1 or 2
 ;; parameters before a body of RX forms.
 ;; (`>=' and `=' are omitted because they are more likely to be used
-;; as Lisp functions than RX constructs.)
+;; as Lisp functions than RX constructs; `repeat' is a `defcustom' type.)
 (put 'group-n 'lisp-indent-function 1)
 (put 'submatch-n 'lisp-indent-function 1)
 (put '** 'lisp-indent-function 2)
-(put 'repeat 'lisp-indent-function 2)
 
 
 (defun rx--translate (item)