Gnus development mailing list
 help / color / mirror / Atom feed
From: Steven L Baur <steve@miranova.com>
Subject: Re: Gnus v5.2.3 is released
Date: 30 May 1996 09:43:59 -0700	[thread overview]
Message-ID: <m2g28i5cxc.fsf@deanna.miranova.com> (raw)
In-Reply-To: Per Abrahamsen's message of 30 May 1996 03:14:35 -0700

I hadn't tried it under 19.31 yet.  Here are the patches for XEmacs:
(NOTE:  If you are using 19.14 and tm, you will have to patch the
custom.el in lisp/gnus as well, I don't know why).
===================================================================
RCS file: RCS/ChangeLog,v
retrieving revision 1.3
diff -u -r1.3 ChangeLog
--- ChangeLog	1996/05/30 06:54:24	1.3
+++ ChangeLog	1996/05/30 16:34:19
@@ -1,3 +1,8 @@
+Thu May 30 09:33:15 1996  Steven L Baur  <steve@miranova.com>
+
+	* custom.el ((and (fboundp 'modify-face) (not (featurep 'face-lock)))): 
+	Protect all calls to set-face-stipple with fboundp.
+
 Thu May 30 05:04:07 1996  Lars Magne Ingebrigtsen  <larsi@aegir.ifi.uio.no>
 
 	* gnus.el (gnus-article-hide-headers): Show boring headers as

===================================================================
RCS file: RCS/custom.el,v
retrieving revision 1.3
diff -u -r1.3 custom.el
--- custom.el	1996/05/30 06:54:24	1.3
+++ custom.el	1996/05/30 16:14:43
@@ -275,7 +275,8 @@
 	   bold-p italic-p underline-p)))
   (condition-case nil (set-face-foreground face foreground) (error nil))
   (condition-case nil (set-face-background face background) (error nil))
-  (condition-case nil (set-face-stipple face stipple) (error nil))
+  (if (fboundp 'set-face-stipple)
+      (condition-case nil (set-face-stipple face stipple) (error nil)))
   (if (string-match "XEmacs" emacs-version)
       (progn
 	(funcall (if bold-p 'make-face-bold 'make-face-unbold) face)
@@ -1545,7 +1546,8 @@
       (when (and bg
 		 (not (string-equal fg "default")))
 	(set-face-background name bg))
-      (when (and stipple
+      (when (and (fboundp 'set-face-stipple)
+		 stipple
 		 (not (eq stipple 'as-is)))
 	(set-face-stipple name))
       (when (and bold

-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be proofread for $250/hour.
Andrea Seastrand: For your vote on the Telecom bill, I will vote for anyone
except you in November.


  reply	other threads:[~1996-05-30 16:43 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1996-05-30  3:51 Lars Magne Ingebrigtsen
1996-05-30  7:29 ` Steven L Baur
1996-05-30 10:14   ` Per Abrahamsen
1996-05-30 16:43     ` Steven L Baur [this message]
1996-05-30 20:17 ` Steven L Baur
1996-05-30 21:15   ` Per Abrahamsen
1996-05-31  1:09     ` Lars Magne Ingebrigtsen
1996-05-31  1:14   ` Lars Magne Ingebrigtsen
1996-05-31  2:35     ` Steven L Baur
1996-05-31  3:03       ` Lars Magne Ingebrigtsen
1996-05-31 15:12       ` Scott Blachowicz
1996-05-31 16:19         ` Per Abrahamsen
1996-05-31 23:30         ` Lars Magne Ingebrigtsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m2g28i5cxc.fsf@deanna.miranova.com \
    --to=steve@miranova.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).