]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix example code in Emacs Lisp Introduction manual
authorXiyue Deng <manphiz@gmail.com>
Fri, 1 Dec 2023 10:31:49 +0000 (02:31 -0800)
committerEli Zaretskii <eliz@gnu.org>
Fri, 1 Dec 2023 11:55:59 +0000 (13:55 +0200)
* doc/lispintro/emacs-lisp-intro.texi (Optional Arguments): Fix
indentation in an example.  (Bug#67559)

Copyright-paperwork-exempt: yes

doc/lispintro/emacs-lisp-intro.texi

index fa5f797bf8da4403ee2ff83b1ee058181fd93124..ef2d63372a5020404de0034a8d89c5339c547bfe 100644 (file)
@@ -5986,12 +5986,12 @@ In outline, the whole function looks like this:
       (and @var{are-both-transient-mark-mode-and-mark-active-true})
       (push-mark))
   (let (@var{determine-size-and-set-it})
-  (goto-char
-    (@var{if-there-is-an-argument}
-        @var{figure-out-where-to-go}
-      @var{else-go-to}
-      (point-min))))
-   @var{do-nicety}
+    (goto-char
+      (@var{if-there-is-an-argument}
+          @var{figure-out-where-to-go}
+        @var{else-go-to}
+        (point-min))))
+  @var{do-nicety}
 @end group
 @end smallexample