]> git.eshelyaron.com Git - emacs.git/commitdiff
; * doc/lispintro/emacs-lisp-intro.texi (nthcdr): Whitespace (bug#71033).
authorEli Zaretskii <eliz@gnu.org>
Sat, 18 May 2024 11:38:29 +0000 (14:38 +0300)
committerEshel Yaron <me@eshelyaron.com>
Sat, 18 May 2024 18:56:04 +0000 (20:56 +0200)
(cherry picked from commit a4828155d8f2b5dc379dd20f17cb478b63425b64)

doc/lispintro/emacs-lisp-intro.texi

index 91e3409ce73d59191ae5a2294e75a588f7872ed7..e4f93b35ddaa71f4c96078d3ae59f7466f9f21d5 100644 (file)
@@ -7193,7 +7193,7 @@ the @samp{@result{}} shows what is returned.
 @smallexample
 @group
 (cdr '(pine fir oak maple))
-     @result{}(fir oak maple)
+     @result{} (fir oak maple)
 @end group
 
 @group
@@ -7203,7 +7203,7 @@ the @samp{@result{}} shows what is returned.
 
 @group
 (cdr '(oak maple))
-     @result{}(maple)
+     @result{} (maple)
 @end group
 
 @group