aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXiyue Deng2023-12-01 02:31:49 -0800
committerEli Zaretskii2023-12-01 13:55:59 +0200
commitbd62bdbc680833bb730b114e005e41df8dc97900 (patch)
treebfbfa295518a6f3775731917841029061482a08c
parentc7e459132a9a39dd2081ca7edda5709e28bda262 (diff)
downloademacs-bd62bdbc680833bb730b114e005e41df8dc97900.tar.gz
emacs-bd62bdbc680833bb730b114e005e41df8dc97900.zip
Fix example code in Emacs Lisp Introduction manual
* doc/lispintro/emacs-lisp-intro.texi (Optional Arguments): Fix indentation in an example. (Bug#67559) Copyright-paperwork-exempt: yes
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index fa5f797bf8d..ef2d63372a5 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -5986,12 +5986,12 @@ In outline, the whole function looks like this:
5986 (and @var{are-both-transient-mark-mode-and-mark-active-true}) 5986 (and @var{are-both-transient-mark-mode-and-mark-active-true})
5987 (push-mark)) 5987 (push-mark))
5988 (let (@var{determine-size-and-set-it}) 5988 (let (@var{determine-size-and-set-it})
5989 (goto-char 5989 (goto-char
5990 (@var{if-there-is-an-argument} 5990 (@var{if-there-is-an-argument}
5991 @var{figure-out-where-to-go} 5991 @var{figure-out-where-to-go}
5992 @var{else-go-to} 5992 @var{else-go-to}
5993 (point-min)))) 5993 (point-min))))
5994 @var{do-nicety} 5994 @var{do-nicety}
5995@end group 5995@end group
5996@end smallexample 5996@end smallexample
5997 5997