diff options
| author | Juanma Barranquero | 2003-02-10 11:31:36 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2003-02-10 11:31:36 +0000 |
| commit | 9e3561d20201278befd302b94d8301286919f1b6 (patch) | |
| tree | 666214a310ec76c5b8f51ed7732638f38d92e8bc | |
| parent | 7b9ce60c217bf70ad240a34d82e11252380639b9 (diff) | |
| download | emacs-9e3561d20201278befd302b94d8301286919f1b6.tar.gz emacs-9e3561d20201278befd302b94d8301286919f1b6.zip | |
(Insertion): Don't show COUNT argument of `insert-char' as optional.
| -rw-r--r-- | lispref/text.texi | 2 |
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 | |||
| 340 | the insertion point, the inserted text falls inside that overlay. | 340 | the 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 |
| 344 | This function inserts @var{count} instances of @var{character} into the | 344 | This function inserts @var{count} instances of @var{character} into the |
| 345 | current buffer before point. The argument @var{count} should be a | 345 | current buffer before point. The argument @var{count} should be a |
| 346 | number (@code{nil} means 1), and @var{character} must be a character. | 346 | number (@code{nil} means 1), and @var{character} must be a character. |