From: Simen Heggestøyl Date: Mon, 4 Jan 2021 13:04:04 +0000 (+0100) Subject: Remove extraneous closing paren X-Git-Tag: emacs-27.1.91~23 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=03080b554523732b5d53db62866e70bf090031e3;p=emacs.git Remove extraneous closing paren * doc/lispref/modes.texi (SMIE Indentation Example): Remove extraneous closing paren. --- diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index 27ca5441f4a..72740868a61 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi @@ -4165,7 +4165,7 @@ Here is an example of an indentation function: (`(,_ . ",") (smie-rule-separator kind)) (`(:after . ":=") sample-indent-basic) (`(:before . ,(or `"begin" `"(" `"@{"))) - (if (smie-rule-hanging-p) (smie-rule-parent))) + (if (smie-rule-hanging-p) (smie-rule-parent)) (`(:before . "if") (and (not (smie-rule-bolp)) (smie-rule-prev-p "else") (smie-rule-parent)))))