summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-10 12:06:21 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-10 12:06:21 +0000
commit607b214a045e0462a1c18a3ee4b82827bc36a253 (patch)
tree70569208c701e0188806f1f098c9587446094155
parent62232fde65efcb0b036a157654a9e273d3cd7e88 (diff)
downloademacs-607b214a045e0462a1c18a3ee4b82827bc36a253.tar.gz
(Insertion): Don't show COUNT argument of `insert-char' as optional.
-rw-r--r--lispref/ChangeLog8
-rw-r--r--lispref/text.texi2
2 files changed, 9 insertions, 1 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog
index df88006e7c1..2a377841cd7 100644
--- a/lispref/ChangeLog
+++ b/lispref/ChangeLog
@@ -1,3 +1,11 @@
+2003-02-10 Juanma Barranquero <lektu@terra.es>
+
+ * buffers.texi (Current Buffer): Describe `save-current-buffer' as a
+ special form, not a macro. From Jesper Harder <harder@ifa.au.dk>.
+
+ * text.texi (Insertion): Don't show COUNT argument of `insert-char' as
+ optional. From Jesper Harder <harder@ifa.au.dk>.
+
2002-01-18 Eli Zaretskii <eliz@gnu.org>
* Makefile.in (VERSION): Set to 2.8.
diff --git a/lispref/text.texi b/lispref/text.texi
index 48180f71d13..ada5e586829 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
the insertion point, the inserted text falls inside that overlay.
@end defun
-@defun insert-char character &optional count inherit
+@defun insert-char character count &optional inherit
This function inserts @var{count} instances of @var{character} into the
current buffer before point. The argument @var{count} should be a
number (@code{nil} means 1), and @var{character} must be a character.