]> git.eshelyaron.com Git - emacs.git/commitdiff
(face-documentation): Renamed from face-doc-string.
authorRichard M. Stallman <rms@gnu.org>
Thu, 24 Jul 1997 06:04:06 +0000 (06:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 24 Jul 1997 06:04:06 +0000 (06:04 +0000)
(set-face-documentation): Renamed from set-face-doc-string.
(face-doc-string): Make this an alias.

lisp/faces.el

index 5580cb56c5b1c032818c062b3521e9cdea729889..0641a1695e09b4b930afc58f6740bb376c3e9e5f 100644 (file)
@@ -145,7 +145,8 @@ If FRAME is omitted or nil, use the selected frame."
        (not (equal font (x-make-font-unitalic font)))
       (memq 'italic font))))
 
-(defun face-doc-string (face)
+(defalias 'face-doc-string 'face-documentation)
+(defun face-documentation (face)
   "Get the documentation string for FACE."
   (get face 'face-documentation))
 \f
@@ -275,7 +276,7 @@ in that frame; otherwise change each frame."
   (cond ((eq italic-p nil) (make-face-unitalic face frame t))
        (t (make-face-italic face frame t))))
 
-(defun set-face-doc-string (face string)
+(defun set-face-documentation (face string)
   "Set the documentation string for FACE to STRING."
   (put face 'face-documentation string))
 \f
@@ -1137,7 +1138,7 @@ selected frame."
     (princ "   Stipple: ") (princ (or (face-stipple face) "none")) (terpri)
     (terpri)
     (princ "Documentation:") (terpri)
-    (let ((doc (face-doc-string face)))
+    (let ((doc (face-documentation face)))
       (if doc
          (princ doc)
        (princ "not documented as a face.")))))