aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/face-remap.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/face-remap.el b/lisp/face-remap.el
index 88c1c779040..b58ee6c74cf 100644
--- a/lisp/face-remap.el
+++ b/lisp/face-remap.el
@@ -103,7 +103,7 @@ The list structure of ENTRY may be destructively modified."
103 (setcdr entry (sort (cdr entry) 'face-attrs-more-relative-p)) 103 (setcdr entry (sort (cdr entry) 'face-attrs-more-relative-p))
104 (nreverse entry)) 104 (nreverse entry))
105 105
106;;;### autoload 106;;;###autoload
107(defun face-remap-add-relative (face &rest specs) 107(defun face-remap-add-relative (face &rest specs)
108 "Add a face remapping entry of FACE to SPECS in the current buffer. 108 "Add a face remapping entry of FACE to SPECS in the current buffer.
109 109
@@ -146,7 +146,7 @@ COOKIE should be the return value from that function."
146 (remq remapping face-remapping-alist))) 146 (remq remapping face-remapping-alist)))
147 (cdr cookie)))))) 147 (cdr cookie))))))
148 148
149;;;### autoload 149;;;###autoload
150(defun face-remap-reset-base (face) 150(defun face-remap-reset-base (face)
151 "Set the base remapping of FACE to inherit from FACE's global definition." 151 "Set the base remapping of FACE to inherit from FACE's global definition."
152 (let ((entry (assq face face-remapping-alist))) 152 (let ((entry (assq face face-remapping-alist)))
@@ -160,7 +160,7 @@ COOKIE should be the return value from that function."
160 (remq entry face-remapping-alist)) 160 (remq entry face-remapping-alist))
161 (setcar (last entry) face))))) ; otherwise, just inherit global def 161 (setcar (last entry) face))))) ; otherwise, just inherit global def
162 162
163;;;### autoload 163;;;###autoload
164(defun face-remap-set-base (face &rest specs) 164(defun face-remap-set-base (face &rest specs)
165 "Set the base remapping of FACE in the current buffer to SPECS. 165 "Set the base remapping of FACE in the current buffer to SPECS.
166If SPECS is empty, the default base remapping is restored, which 166If SPECS is empty, the default base remapping is restored, which
@@ -377,7 +377,7 @@ including a face name, a list of face names, or a face-attribute
377 377
378If INTERACTIVE is non-nil, a message will be displayed describing the result. 378If INTERACTIVE is non-nil, a message will be displayed describing the result.
379 379
380This is a wrapper function which calls just `buffer-face-set' or 380This is a wrapper function which calls `buffer-face-set' or
381`buffer-face-toggle' (depending on ARG), and prints a status 381`buffer-face-toggle' (depending on ARG), and prints a status
382message in the echo area. In many cases one of those functions 382message in the echo area. In many cases one of those functions
383may be more appropriate." 383may be more appropriate."