]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix cloning 'face-remapping-alist' for indirect buffers
authorEli Zaretskii <eliz@gnu.org>
Thu, 17 Aug 2023 07:51:36 +0000 (10:51 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 17 Aug 2023 07:51:36 +0000 (10:51 +0300)
* lisp/face-remap.el (face-remap--copy-face): Remove.
(face-attrs--make-indirect-safe): Use 'copy-tree'.  Suggested by
Stefan Monnier <monnier@iro.umontreal.ca>.

lisp/face-remap.el

index 3ec271b67a43f869ea0e2663db51d7127724ddf0..c5f7af37406d907a60793d5bb340cb064012d02e 100644 (file)
    :foreground :background :stipple :overline :strike-through :box
    :font :inherit :fontset :distant-foreground :extend :vector])
 
-(defun face-remap--copy-face (val)
-  "Return a copy of the `face' property value VAL."
-  ;; A `face' property can be either a face name (a symbol), or a face
-  ;; property list like (:foreground "red" :inherit default),
-  ;; or a list of such things.
-  ;; FIXME: This should probably be shared to some extent with
-  ;; `add-face-text-property'.
-  (if (or (not (listp val)) (keywordp (car val)))
-      val
-    (copy-sequence val)))
-
 (defun face-attrs--make-indirect-safe ()
   "Deep-copy the buffer's `face-remapping-alist' upon cloning the buffer."
   (setq-local face-remapping-alist
-              (mapcar #'face-remap--copy-face face-remapping-alist)))
+              (mapcar #'copy-tree face-remapping-alist)))
 
 (add-hook 'clone-indirect-buffer-hook #'face-attrs--make-indirect-safe)