changeset 52379:541533296a1d

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 29 Aug 2003 16:20:18 +0000
parents 1ef52c5ec895
children 7a80a66265e6
files lisp/desktop.el lisp/subr.el
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/desktop.el	Fri Aug 29 16:19:00 2003 +0000
+++ b/lisp/desktop.el	Fri Aug 29 16:20:18 2003 +0000
@@ -37,10 +37,9 @@
 ;;		- buffer-read-only
 ;;		- some local variables
 
-;; To use this, add these lines in the bottom of your .emacs file:
+;; To use this, add these lines to the bottom of your .emacs file:
 ;;
-;;	(desktop-load-default)
-;;	(desktop-read)
+;;      (require 'desktop)
 ;;      (setq desktop-enable t)
 ;;
 ;; Between the first two lines you may wish to add something that updates the
--- a/lisp/subr.el	Fri Aug 29 16:19:00 2003 +0000
+++ b/lisp/subr.el	Fri Aug 29 16:20:18 2003 +0000
@@ -1550,6 +1550,8 @@
 character numbers specifying the substring.  They default to the
 beginning and the end of BUFFER.  Strip text properties from the
 inserted text according to `yank-excluded-properties'."
+  ;; Since the buffer text should not normally have yank-handler properties,
+  ;; there is no need to handle them here.
   (let ((opoint (point)))
     (insert-buffer-substring buf start end)
     (remove-yank-excluded-properties opoint (point))))