]> git.eshelyaron.com Git - emacs.git/commitdiff
(internal-find-face, internal-get-face): Doc fixes.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 1 Feb 2007 00:39:02 +0000 (00:39 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 1 Feb 2007 00:39:02 +0000 (00:39 +0000)
lisp/ChangeLog
lisp/faces.el

index 3385b372283aa166bdb1d1069b61bba997750321..3c3e6f4dc01290cb60375fbf82136bbf60f63004 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-01  Juanma Barranquero  <lekktu@gmail.com>
+
+       * faces.el (internal-find-face, internal-get-face): Doc fixes.
+
 2007-01-31  Juanma Barranquero  <lekktu@gmail.com>
 
        * ido.el (ido-set-common-completion): Use `let', not `let*'.
index 53e3b004533a8f1126cd0ac587c3ceaa76e84626..6cf5d4f4d1caf51653f9cdb557bd0c52f041bf06 100644 (file)
@@ -181,20 +181,16 @@ to NEW-FACE on frame NEW-FRAME."
 (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")