Remove extraneous closing paren

* doc/lispref/modes.texi (SMIE Indentation Example): Remove extraneous
closing paren.
This commit is contained in:
Simen Heggestøyl 2021-01-04 14:04:04 +01:00 committed by Eli Zaretskii
parent 99cc0045eb
commit 03080b5545

View file

@ -4165,7 +4165,7 @@ Here is an example of an indentation function:
(`(,_ . ",") (smie-rule-separator kind)) (`(,_ . ",") (smie-rule-separator kind))
(`(:after . ":=") sample-indent-basic) (`(:after . ":=") sample-indent-basic)
(`(:before . ,(or `"begin" `"(" `"@{"))) (`(:before . ,(or `"begin" `"(" `"@{")))
(if (smie-rule-hanging-p) (smie-rule-parent))) (if (smie-rule-hanging-p) (smie-rule-parent))
(`(:before . "if") (`(:before . "if")
(and (not (smie-rule-bolp)) (smie-rule-prev-p "else") (and (not (smie-rule-bolp)) (smie-rule-prev-p "else")
(smie-rule-parent))))) (smie-rule-parent)))))