diff options
author | Dave Love <fx@gnu.org> | 1999-11-24 20:35:54 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-11-24 20:35:54 +0000 |
commit | 08449ec1ec935358e7fd4675ebfcb0b314b23f54 (patch) | |
tree | f390355128dcb4d02da360bbd2a77666a644aebc /lisp/cus-face.el | |
parent | 32651a48c54260f4407de431d23395d8e6b9e361 (diff) | |
download | emacs-08449ec1ec935358e7fd4675ebfcb0b314b23f54.tar.gz |
(custom-declare-face): Purecopy DOC.
Diffstat (limited to 'lisp/cus-face.el')
-rw-r--r-- | lisp/cus-face.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-face.el b/lisp/cus-face.el index 2b32ce3f522..b465aada7ae 100644 --- a/lisp/cus-face.el +++ b/lisp/cus-face.el @@ -56,7 +56,7 @@ (if (memq window-system '(x w32)) (make-face-x-resource-internal face)))) (when (and doc (null (face-documentation face))) - (set-face-documentation face doc)) + (set-face-documentation face (purecopy doc))) (custom-handle-all-keywords face args 'custom-face) (run-hooks 'custom-define-hook)) face) |