diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-06-27 16:09:19 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-06-27 16:09:19 +0000 |
commit | 4b22f844609574dbef40ec8c3903d52cc56ae900 (patch) | |
tree | e906da0c0699f8a5d08a49f46e09e92116cf7f59 /lisp/faces.el | |
parent | 8eb93953787ed306da3a52e03557a5284a76dada (diff) | |
download | emacs-4b22f844609574dbef40ec8c3903d52cc56ae900.tar.gz |
(frame-update-faces): Fix obsolescence declaration.
(internal-get-face): Remove redundant info from docstring and
fix obsolescence declaration.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 9dfb88dbd9b..7271edeed15 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -196,13 +196,10 @@ should not be used anymore." 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. - -This function is defined for compatibility with Emacs 20.2. It -should not be used anymore." +If NAME is already a face, it is simply returned." (or (facep name) (check-face name))) -(make-obsolete 'internal-get-face "See `facep' and `check-face'." "21.1") +(make-obsolete 'internal-get-face "see `facep' and `check-face'." "21.1") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -1755,7 +1752,7 @@ created." ;; Update a frame's faces when we change its default font. (defalias 'frame-update-faces 'ignore) -(make-obsolete 'frame-update-faces "No longer necessary" "21.1") +(make-obsolete 'frame-update-faces "no longer necessary." "21.1") ;; Update the colors of FACE, after FRAME's own colors have been ;; changed. |