diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-01-20 19:18:54 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-01-20 19:18:54 +0200 |
commit | b01604b362755d02a05c65df4fca321ec84007d9 (patch) | |
tree | 92bbdf5a36daba6e34496723e31c85058823300f /lisp/face-remap.el | |
parent | cce813a4e70324956d6546102e26dbb312319bbd (diff) | |
download | emacs-b01604b362755d02a05c65df4fca321ec84007d9.tar.gz emacs-b01604b362755d02a05c65df4fca321ec84007d9.tar.bz2 emacs-b01604b362755d02a05c65df4fca321ec84007d9.zip |
Update documentation of 'clone-indirect-buffer-hook'
* doc/emacs/buffers.texi (Indirect Buffers):
* src/buffer.c (syms_of_buffer) <clone-indirect-buffer-hook>:
Update the documentation of 'clone-indirect-buffer-hook' due the
recent changes.
* etc/NEWS: Mention the change in where the hook is run.
* lisp/face-remap.el (face-attrs--make-indirect-safe): Doc fix.
Diffstat (limited to 'lisp/face-remap.el')
-rw-r--r-- | lisp/face-remap.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/face-remap.el b/lisp/face-remap.el index 95dffcadd68..3675ea14b4c 100644 --- a/lisp/face-remap.el +++ b/lisp/face-remap.el @@ -71,7 +71,7 @@ :font :inherit :fontset :distant-foreground :extend :vector]) (defun face-attrs--make-indirect-safe () - "Deep copy `face-remapping-alist' on cloning for safety." + "Deep-copy the buffer's `face-remapping-alist' upon cloning the buffer." (setq-local face-remapping-alist (mapcar #'copy-sequence face-remapping-alist))) |