Mercurial > emacs
changeset 15871:4904f9f8bf41
(modify-face): Handle stipple values
of the form (WIDTH HEIGHT DATA).
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 16 Aug 1996 05:09:09 +0000 |
parents | 0a2f89bd3c6b |
children | 244a4779d1b5 |
files | lisp/faces.el |
diffstat | 1 files changed, 19 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/faces.el Thu Aug 15 21:18:04 1996 +0000 +++ b/lisp/faces.el Fri Aug 16 05:09:09 1996 +0000 @@ -232,9 +232,24 @@ (background (modify-face-read-string face (face-background (intern face)) "background" colors)) - (stipple (modify-face-read-string - face (face-stipple (intern face)) - "stipple" stipples)) + ;; If the stipple value is a list (WIDTH HEIGHT DATA), + ;; represent that as a string by printing it out. + (old-stipple-string + (if (stringp (face-stipple (intern face))) + (face-stipple (intern face)) + (prin1-to-string (face-stipple (intern face))))) + (new-stipple-string + (modify-face-read-string + face old-stipple-string + "stipple" stipples)) + ;; Convert the stipple value text we read + ;; back to a list if it looks like one. + ;; This makes the assumption that a pixmap file name + ;; won't start with an open-paren. + (stipple + (if (string-match "^(" new-stipple-string) + (read new-stipple-string) + new-stipple-string)) (bold-p (y-or-n-p (concat "Set face " face " bold "))) (italic-p (y-or-n-p (concat "Set face " face " italic "))) (underline-p (y-or-n-p (concat "Set face " face " underline "))) @@ -244,7 +259,7 @@ (delq nil (list (and foreground (concat (downcase foreground) " foreground")) (and background (concat (downcase background) " background")) - (and stipple (concat (downcase stipple) " stipple")) + (and stipple (concat (downcase new-stipple-string) " stipple")) (and bold-p "bold") (and italic-p "italic") (and underline-p "underline"))) ", ")) (list (intern face) foreground background stipple