]> git.eshelyaron.com Git - emacs.git/commitdiff
* simple.el (kill-region): Doc fix (Bug#6787).
authorChong Yidong <cyd@stupidchicken.com>
Sat, 14 Aug 2010 23:21:40 +0000 (19:21 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sat, 14 Aug 2010 23:21:40 +0000 (19:21 -0400)
lisp/ChangeLog
lisp/simple.el

index 718f6f402e56ddd379bb009d0c946f26041ace3f..a0cdf2f8a77e6d9702d82a899a9dce7445ed8ec6 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-14  Chong Yidong  <cyd@stupidchicken.com>
+
+       * simple.el (kill-region): Doc fix (Bug#6787).
+
 2010-08-14  Glenn Morris  <rgm@gnu.org>
 
        * calendar/diary-lib.el (diary-header-line-format):
index d0c27656e41fde5da5bd6e8ec607cb4b3cb69d3a..9b38f3cdbf3ec2b91f48567e5f55912fc901984a 100644 (file)
@@ -2959,7 +2959,8 @@ If the buffer is read-only, Emacs will beep and refrain from deleting
 the text, but put the text in the kill ring anyway.  This means that
 you can use the killing commands to copy text from a read-only buffer.
 
-This is the primitive for programs to kill text (as opposed to deleting it).
+Lisp programs should use this function for killing text.
+ (To delete text, use `delete-region'.)
 Supply two arguments, character positions indicating the stretch of text
  to be killed.
 Any command that calls this function is a \"kill command\".