summaryrefslogtreecommitdiff
path: root/src/cmds.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2010-05-24 20:54:13 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2010-05-24 20:54:13 -0400
commit171eda5358a6c63b4854688a300b0fe22d3fcb38 (patch)
treef502d64f89cd9a59a4c8a0b51324b3eb2e6c8ef5 /src/cmds.c
parent7eca871a82d582b986c638343f74d16b819a0f14 (diff)
parentdd9b52a6930c42eeefb45938df309bebe9acec37 (diff)
downloademacs-171eda5358a6c63b4854688a300b0fe22d3fcb38.tar.gz
Merge from emacs-23
Diffstat (limited to 'src/cmds.c')
-rw-r--r--src/cmds.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c
index b8a65324e9f..1fdd3729d68 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -278,7 +278,9 @@ DEFUN ("delete-backward-char", Fdelete_backward_char, Sdelete_backward_char,
doc: /* Delete the previous N characters (following if N is negative).
Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
Interactively, N is the prefix arg, and KILLFLAG is set if
-N was explicitly specified. */)
+N was explicitly specified.
+This is meant for interactive use only; from Lisp, better use `delete-char'
+with a negated argument. */)
(n, killflag)
Lisp_Object n, killflag;
{