Mercurial > emacs
diff src/cmds.c @ 108666:6fcf1baf9c2a
* emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
Add delete-backward-char.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Mon, 24 May 2010 17:01:10 -0400 |
| parents | 1d1d5d9bd884 |
| children | f3d817d46523 376148b31b5e |
line wrap: on
line diff
--- a/src/cmds.c Thu May 20 21:06:34 2010 -0700 +++ b/src/cmds.c Mon May 24 17:01:10 2010 -0400 @@ -270,7 +270,9 @@ 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; {
