diff man/lispref/text.texi @ 446:1ccc32a20af4 r21-2-38

Import from CVS: tag r21-2-38
author cvs
date Mon, 13 Aug 2007 11:37:21 +0200
parents 576fb035e263
children 37e56e920ac5
line wrap: on
line diff
--- a/man/lispref/text.texi	Mon Aug 13 11:36:20 2007 +0200
+++ b/man/lispref/text.texi	Mon Aug 13 11:37:21 2007 +0200
@@ -476,10 +476,11 @@
 argument @var{buffer} is @code{nil}, the current buffer is assumed.
 @end deffn
 
-@deffn Command delete-char count &optional killp
+@deffn Command delete-char &optional count killp
 This command deletes @var{count} characters directly after point, or
-before point if @var{count} is negative.  If @var{killp} is
-non-@code{nil}, then it saves the deleted characters in the kill ring.
+before point if @var{count} is negative.  @var{count} defaults to @code{1}.
+If @var{killp} is non-@code{nil}, then it saves the deleted characters
+in the kill ring.
 
 In an interactive call, @var{count} is the numeric prefix argument, and
 @var{killp} is the unprocessed prefix argument.  Therefore, if a prefix
@@ -490,11 +491,12 @@
 The value returned is always @code{nil}.
 @end deffn
 
-@deffn Command delete-backward-char count &optional killp
+@deffn Command delete-backward-char &optional count killp
 @cindex delete previous char
 This command deletes @var{count} characters directly before point, or
-after point if @var{count} is negative.  If @var{killp} is
-non-@code{nil}, then it saves the deleted characters in the kill ring.
+after point if @var{count} is negative.  @var{count} defaults to 1.
+If @var{killp} is non-@code{nil}, then it saves the deleted characters
+in the kill ring.
 
 In an interactive call, @var{count} is the numeric prefix argument, and
 @var{killp} is the unprocessed prefix argument.  Therefore, if a prefix