diff options
| author | Stefan Monnier | 2010-05-24 17:01:10 -0400 |
|---|---|---|
| committer | Stefan Monnier | 2010-05-24 17:01:10 -0400 |
| commit | dd9b52a6930c42eeefb45938df309bebe9acec37 (patch) | |
| tree | 7250101ce756e75d824d82e3c21b5f8e1803d445 /src/cmds.c | |
| parent | f5b416d2ef84115b7b0690dfff48be7ce3b4d79a (diff) | |
| download | emacs-dd9b52a6930c42eeefb45938df309bebe9acec37.tar.gz emacs-dd9b52a6930c42eeefb45938df309bebe9acec37.zip | |
* emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
Add delete-backward-char.
Diffstat (limited to 'src/cmds.c')
| -rw-r--r-- | src/cmds.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c index fd337f378bb..3ad6f988b2d 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -270,7 +270,9 @@ DEFUN ("delete-backward-char", Fdelete_backward_char, Sdelete_backward_char, | |||
| 270 | doc: /* Delete the previous N characters (following if N is negative). | 270 | doc: /* Delete the previous N characters (following if N is negative). |
| 271 | Optional second arg KILLFLAG non-nil means kill instead (save in kill ring). | 271 | Optional second arg KILLFLAG non-nil means kill instead (save in kill ring). |
| 272 | Interactively, N is the prefix arg, and KILLFLAG is set if | 272 | Interactively, N is the prefix arg, and KILLFLAG is set if |
| 273 | N was explicitly specified. */) | 273 | N was explicitly specified. |
| 274 | This is meant for interactive use only; from Lisp, better use `delete-char' | ||
| 275 | with a negated argument. */) | ||
| 274 | (n, killflag) | 276 | (n, killflag) |
| 275 | Lisp_Object n, killflag; | 277 | Lisp_Object n, killflag; |
| 276 | { | 278 | { |