# HG changeset patch # User Eli Zaretskii # Date 1281175867 -10800 # Node ID 5b1f706a762219725e5dc4806dbe2610d2d3c425 # Parent 1b5e924eb718fa2205442a0f82c839007e128817 simple.el (delete-forward-char): Doc fix. diff -r 1b5e924eb718 -r 5b1f706a7622 lisp/ChangeLog --- a/lisp/ChangeLog Sat Aug 07 12:50:08 2010 +0300 +++ b/lisp/ChangeLog Sat Aug 07 13:11:07 2010 +0300 @@ -1,5 +1,7 @@ 2010-08-07 Eli Zaretskii + * simple.el (delete-forward-char): Doc fix. + * tutorial.el (help-with-tutorial): Hack safe file-local variables after reading the tutorial. diff -r 1b5e924eb718 -r 5b1f706a7622 lisp/simple.el --- a/lisp/simple.el Sat Aug 07 12:50:08 2010 +0300 +++ b/lisp/simple.el Sat Aug 07 13:11:07 2010 +0300 @@ -895,7 +895,7 @@ (t (delete-char (- n) killflag)))) (defun delete-forward-char (n &optional killflag) - "Delete the previous N characters (following if N is negative). + "Delete the following N characters (previous if N is negative). If Transient Mark mode is enabled, the mark is active, and N is 1, delete the text in the region and deactivate the mark instead. To disable this, set `delete-active-region' to nil.