aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2022-11-03 03:49:08 +0100
committerJuanma Barranquero2022-11-03 03:49:08 +0100
commitb074c55a97f5ab4eaba09dbb3a5d15c9a27a1469 (patch)
tree59b232f171efce0d6dbfbe967fa85bfa25627a01
parent05f5d978ae70c4849a5c47865d62301d27317a8a (diff)
downloademacs-b074c55a97f5ab4eaba09dbb3a5d15c9a27a1469.tar.gz
emacs-b074c55a97f5ab4eaba09dbb3a5d15c9a27a1469.zip
; * doc/lispref/control.texi (Generators): Fix typo.
-rw-r--r--doc/lispref/control.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/control.texi b/doc/lispref/control.texi
index 9035e7f6bbc..3c874ee3fe0 100644
--- a/doc/lispref/control.texi
+++ b/doc/lispref/control.texi
@@ -1534,7 +1534,7 @@ iterator with @code{iter-next} for anything interesting to happen.
1534Each call to a generator function produces a @emph{different} 1534Each call to a generator function produces a @emph{different}
1535iterator, each with its own state. 1535iterator, each with its own state.
1536 1536
1537@defun iter-next iterator value 1537@defun iter-next iterator &optional value
1538Retrieve the next value from @var{iterator}. If there are no more 1538Retrieve the next value from @var{iterator}. If there are no more
1539values to be generated (because @var{iterator}'s generator function 1539values to be generated (because @var{iterator}'s generator function
1540returned), @code{iter-next} signals the @code{iter-end-of-sequence} 1540returned), @code{iter-next} signals the @code{iter-end-of-sequence}