This commit was manufactured by cvs2svn to create branch 'unlabeled-1.1.1'.
[chise/xemacs-chise.git.1] / lisp / faces.el
index c847f37..09a3e79 100644 (file)
@@ -318,6 +318,7 @@ The following symbols have predefined meanings:
                     For valid instantiators, see `face-boolean-specifier-p'.
 
  dim                Dim all text covered by this face.
+                    Only used by faces on TTY devices.
                     For valid instantiators, see `face-boolean-specifier-p'.
 
  blinking           Blink all text covered by this face.
@@ -689,12 +690,12 @@ See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
   (set-face-property face 'highlight highlight-p locale tag-set how-to-add))
 
 (defun face-dim-p (face &optional domain default no-fallback)
-  "Return t if FACE is dimmed in DOMAIN.
+  "Return t if FACE is dimmed in DOMAIN (TTY domains only).
 See `face-property-instance' for the semantics of the DOMAIN argument."
   (face-property-instance face 'dim domain default no-fallback))
 
 (defun set-face-dim-p (face dim-p &optional locale tag-set how-to-add)
-  "Change whether FACE is dimmed in LOCALE.
+  "Change whether FACE is dimmed in LOCALE (TTY locales only).
 DIM-P is normally a face-boolean instantiator; see
  `face-boolean-specifier-p'.
 See `set-face-property' for the semantics of the LOCALE, TAG-SET, and
@@ -749,10 +750,9 @@ See `face-property-instance' for the semantics of the DOMAIN argument."
   (if (not (valid-specifier-domain-p domain))
       (error "Invalid specifier domain"))
   (let ((device (dfw-device domain))
-       (common-props '(foreground background font display-table underline
-                                  dim))
+       (common-props '(foreground background font display-table underline))
        (win-props '(background-pixmap strikethru))
-       (tty-props '(highlight blinking reverse)))
+       (tty-props '(highlight dim blinking reverse)))
 
     ;; First check the properties which are used in common between the
     ;; x and tty devices.  Then, check those properties specific to
@@ -1256,39 +1256,6 @@ If FRAME is nil, return the default frame properties."
         (setq default-custom-frame-properties
               (extract-custom-frame-properties (selected-frame))))))
 
-(defun face-spec-update-all-matching (spec display plist)
-  "Update all entries in the face spec that could match display to
-have the entries from the new plist and return the new spec"
-  (mapcar
-   (lambda (e)
-     (let ((entries (car e))
-          (options (cadr e))
-          (match t)
-          dplist
-          (new-options plist)
-          )
-       (unless (eq display t)
-        (mapc (lambda (arg)
-                (setq dplist (plist-put dplist (car arg) (cadr arg))))
-              display))
-       (unless (eq entries t)
-        (mapc (lambda (arg)
-                (setq match (and match (eq (cadr arg)
-                                           (plist-get
-                                             dplist (car arg)
-                                             (cadr arg))))))
-              entries))
-       (if (not match)
-          e
-        (while new-options
-          (setq options
-                (plist-put options (car new-options) (cadr new-options)))
-          (setq new-options (cddr new-options)))
-        (list entries options))))
-   (copy-sequence spec)))
-       
-                   
-
 (defun face-spec-set-match-display (display &optional frame)
   "Return non-nil if DISPLAY matches FRAME.
 DISPLAY is part of a spec such as can be used in `defface'.