aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2003-02-10 11:31:36 +0000
committerJuanma Barranquero2003-02-10 11:31:36 +0000
commit9e3561d20201278befd302b94d8301286919f1b6 (patch)
tree666214a310ec76c5b8f51ed7732638f38d92e8bc
parent7b9ce60c217bf70ad240a34d82e11252380639b9 (diff)
downloademacs-9e3561d20201278befd302b94d8301286919f1b6.tar.gz
emacs-9e3561d20201278befd302b94d8301286919f1b6.zip
(Insertion): Don't show COUNT argument of `insert-char' as optional.
-rw-r--r--lispref/text.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/text.texi b/lispref/text.texi
index cd4140dd220..c0df73cb13c 100644
--- a/lispref/text.texi
+++ b/lispref/text.texi
@@ -340,7 +340,7 @@ inserted text falls outside the overlay; if a nonempty overlay ends at
340the insertion point, the inserted text falls inside that overlay. 340the insertion point, the inserted text falls inside that overlay.
341@end defun 341@end defun
342 342
343@defun insert-char character &optional count inherit 343@defun insert-char character count &optional inherit
344This function inserts @var{count} instances of @var{character} into the 344This function inserts @var{count} instances of @var{character} into the
345current buffer before point. The argument @var{count} should be a 345current buffer before point. The argument @var{count} should be a
346number (@code{nil} means 1), and @var{character} must be a character. 346number (@code{nil} means 1), and @var{character} must be a character.