]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove extraneous closing paren
authorSimen Heggestøyl <simenheg@gmail.com>
Mon, 4 Jan 2021 13:04:04 +0000 (14:04 +0100)
committerEli Zaretskii <eliz@gnu.org>
Mon, 4 Jan 2021 17:01:23 +0000 (19:01 +0200)
* doc/lispref/modes.texi (SMIE Indentation Example): Remove extraneous
closing paren.

doc/lispref/modes.texi

index 27ca5441f4a5e77d929bdb28574a98200cae5ffd..72740868a61d04a97fdf712ab3af5a4da955baab 100644 (file)
@@ -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)))))