# HG changeset patch # User Juanma Barranquero # Date 1170290140 0 # Node ID 5e69c78ab3f4ae5acd7d88c33ecdc29d69142c33 # Parent 11d6ebb788a682ea46d2f8681a991fc133ea2517 (internal-find-face, internal-get-face): Doc fixes. diff -r 11d6ebb788a6 -r 5e69c78ab3f4 lisp/faces.el --- a/lisp/faces.el Wed Jan 31 19:28:35 2007 +0000 +++ b/lisp/faces.el Thu Feb 01 00:35:40 2007 +0000 @@ -181,20 +181,16 @@ (defun internal-find-face (name &optional frame) "Retrieve the face named NAME. Return nil if there is no such face. -If the optional argument FRAME is given, this gets the face NAME for -that frame; otherwise, it uses the selected frame. -If FRAME is the symbol t, then the global, non-frame face is returned. -If NAME is already a face, it is simply returned." +If NAME is already a face, it is simply returned. +The optional argument FRAME is ignored." (facep name)) (make-obsolete 'internal-find-face 'facep "21.1") (defun internal-get-face (name &optional frame) "Retrieve the face named NAME; error if there is none. -If the optional argument FRAME is given, this gets the face NAME for -that frame; otherwise, it uses the selected frame. -If FRAME is the symbol t, then the global, non-frame face is returned. -If NAME is already a face, it is simply returned." +If NAME is already a face, it is simply returned. +The optional argument FRAME is ignored." (or (facep name) (check-face name))) (make-obsolete 'internal-get-face "see `facep' and `check-face'." "21.1")