; * lisp/emacs-lisp/rx.el: Don't set indentation prop for repeat.

This commit is contained in:
Mattias Engdegård 2022-06-30 15:19:15 +02:00
parent a68508c10b
commit 77e99dcacb

View 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)