comparison src/cmds.c @ 108756:f3d817d46523

Merge from emacs-23
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 24 May 2010 20:54:13 -0400
parents cd5442b2826b 6fcf1baf9c2a
children c4f9f87f04a2
comparison
equal deleted inserted replaced
108755:3f667e9ab359 108756:f3d817d46523
276 DEFUN ("delete-backward-char", Fdelete_backward_char, Sdelete_backward_char, 276 DEFUN ("delete-backward-char", Fdelete_backward_char, Sdelete_backward_char,
277 1, 2, "p\nP", 277 1, 2, "p\nP",
278 doc: /* Delete the previous N characters (following if N is negative). 278 doc: /* Delete the previous N characters (following if N is negative).
279 Optional second arg KILLFLAG non-nil means kill instead (save in kill ring). 279 Optional second arg KILLFLAG non-nil means kill instead (save in kill ring).
280 Interactively, N is the prefix arg, and KILLFLAG is set if 280 Interactively, N is the prefix arg, and KILLFLAG is set if
281 N was explicitly specified. */) 281 N was explicitly specified.
282 This is meant for interactive use only; from Lisp, better use `delete-char'
283 with a negated argument. */)
282 (n, killflag) 284 (n, killflag)
283 Lisp_Object n, killflag; 285 Lisp_Object n, killflag;
284 { 286 {
285 Lisp_Object value; 287 Lisp_Object value;
286 int deleted_special = 0; 288 int deleted_special = 0;