aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/faces.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index e448ab4f13d..8bcf9901a81 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -225,7 +225,8 @@ Value is FACE."
225 225
226(defun face-id (face &optional frame) 226(defun face-id (face &optional frame)
227 "Return the internal ID of face with name FACE. 227 "Return the internal ID of face with name FACE.
228If optional argument FRAME is nil or omitted, use the selected frame." 228The optional argument FRAME is ignored, since the internal face ID
229of a face name is the same for all frames."
229 (check-face face) 230 (check-face face)
230 (get face 'face)) 231 (get face 'face))
231 232