]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change.
authorRichard M. Stallman <rms@gnu.org>
Fri, 29 Aug 2003 16:20:18 +0000 (16:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 29 Aug 2003 16:20:18 +0000 (16:20 +0000)
lisp/desktop.el
lisp/subr.el

index e4ce71ec71d042b051299b57f8583140438dcc43..d941b606b81045c86f68c903f198f755e68b7a13 100644 (file)
 ;;             - 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
index 78d3a755f143a10d623ab5cd3e5479abbc7b00c4..7e2e0e3e304dd98ad84ee607676674d38603997f 100644 (file)
@@ -1550,6 +1550,8 @@ BUFFER may be a buffer or a buffer name.  Arguments START and END are
 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))))