aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2002-04-29 21:13:51 +0000
committerKim F. Storm2002-04-29 21:13:51 +0000
commit8209310978b87b3e77951effce773a30cf618b6c (patch)
treeb81e2922935cb83856959a31c61884080f80f3d5
parent8ed59ad5707cdec33064f749565811ec1b076bf9 (diff)
downloademacs-8209310978b87b3e77951effce773a30cf618b6c.tar.gz
emacs-8209310978b87b3e77951effce773a30cf618b6c.zip
(yank-excluded-properties): Added help-echo to list.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/simple.el2
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 978df486701..06a73d25b28 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,10 @@
12002-04-29 Kim F. Storm <storm@cua.dk>
2
3 * subr.el (remove-yank-excluded-properties): New helper function.
4 (insert-for-yank, insert-buffer-substring-as-yank): Use it.
5
6 * simple.el (yank-excluded-properties): Added help-echo to list.
7
12002-04-29 Glenn Morris <gmorris@ast.cam.ac.uk> 82002-04-29 Glenn Morris <gmorris@ast.cam.ac.uk>
2 9
3 * autoinsert.el (auto-insert-directory): Doc fix. 10 * autoinsert.el (auto-insert-directory): Doc fix.
diff --git a/lisp/simple.el b/lisp/simple.el
index 09acf9b86ff..ce19c413482 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -1901,7 +1901,7 @@ The argument is used for internal purposes; do not supply one."
1901 1901
1902;; This is actually used in subr.el but defcustom does not work there. 1902;; This is actually used in subr.el but defcustom does not work there.
1903(defcustom yank-excluded-properties 1903(defcustom yank-excluded-properties
1904 '(read-only invisible intangible field mouse-face local-map keymap) 1904 '(read-only invisible intangible field mouse-face help-echo local-map keymap)
1905 "*Text properties to discard when yanking." 1905 "*Text properties to discard when yanking."
1906 :type '(choice (const :tag "All" t) (repeat symbol)) 1906 :type '(choice (const :tag "All" t) (repeat symbol))
1907 :group 'editing 1907 :group 'editing