simple.el (delete-forward-char): Doc fix.

This commit is contained in:
Eli Zaretskii 2010-08-07 13:11:07 +03:00
parent 309a663ff7
commit 4c5130d6d1
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
2010-08-07 Eli Zaretskii <eliz@gnu.org>
* simple.el (delete-forward-char): Doc fix.
* tutorial.el (help-with-tutorial): Hack safe file-local variables
after reading the tutorial.

View file

@ -895,7 +895,7 @@ the end of the line."
(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.