diff options
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
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 @@ | |||
| 1 | 2002-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 | |||
| 1 | 2002-04-29 Glenn Morris <gmorris@ast.cam.ac.uk> | 8 | 2002-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 |