aboutsummaryrefslogtreecommitdiffstats
path: root/src/cmds.c
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2010-05-24 17:01:10 -0400
committerStefan Monnier <[email protected]>2010-05-24 17:01:10 -0400
commitdd9b52a6930c42eeefb45938df309bebe9acec37 (patch)
tree7250101ce756e75d824d82e3c21b5f8e1803d445 /src/cmds.c
parentf5b416d2ef84115b7b0690dfff48be7ce3b4d79a (diff)
* emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
Add delete-backward-char.
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 fd337f378b..3ad6f988b2 100644
--- a/src/cmds.c
+++ b/src/cmds.c
@@ -270,7 +270,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;
{