# HG changeset patch # User Richard M. Stallman # Date 1062174018 0 # Node ID 541533296a1d64ab91708c69f623b81f6ec19ae0 # Parent 1ef52c5ec8951ab811fba2460d5b579b8c21f8c8 Comment change. diff -r 1ef52c5ec895 -r 541533296a1d lisp/desktop.el --- 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 diff -r 1ef52c5ec895 -r 541533296a1d lisp/subr.el --- 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))))