changeset 109676:5b1f706a7622

simple.el (delete-forward-char): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Sat, 07 Aug 2010 13:11:07 +0300
parents 1b5e924eb718
children 73b2acbfa01b
files lisp/ChangeLog lisp/simple.el
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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  <eliz@gnu.org>
 
+	* simple.el (delete-forward-char): Doc fix.
+
 	* tutorial.el (help-with-tutorial): Hack safe file-local variables
 	after reading the tutorial.
 
--- 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.