Mercurial > emacs
comparison lisp/simple.el @ 44981:9aadbf05db26
(yank-excluded-properties): Added help-echo to list.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Mon, 29 Apr 2002 21:08:33 +0000 |
parents | fe8ce22fc4a1 |
children | 6e3c5d67f0fe |
comparison
equal
deleted
inserted
replaced
44980:5eb4aa56b278 | 44981:9aadbf05db26 |
---|---|
1899 | 1899 |
1900 ;; Yanking. | 1900 ;; Yanking. |
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 |
1908 :version 21.4) | 1908 :version 21.4) |
1909 | 1909 |