X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fxemacs-chise.git.1;a=blobdiff_plain;f=man%2Flispref%2Ftext.texi;fp=man%2Flispref%2Ftext.texi;h=233e73c40eb920ab40bc213a85970bc67db92cef;hp=b4ec428f28a02a26735eefaf34f5ae2fd001bc98;hb=82f6d62ee211b1d36e8f45fed3ee3edde82b6916;hpb=a40368ea9486a5da02004feb1254b9cceb857228 diff --git a/man/lispref/text.texi b/man/lispref/text.texi index b4ec428..233e73c 100644 --- a/man/lispref/text.texi +++ b/man/lispref/text.texi @@ -476,10 +476,11 @@ This command deletes the text in @var{buffer} in the region defined by 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 kill ring. 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