Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus v5.4.42 is released
@ 1997-04-06 21:23 Lars Magne Ingebrigtsen
  1997-04-07 15:15 ` Karl Kleinpaste
  0 siblings, 1 reply; 4+ messages in thread
From: Lars Magne Ingebrigtsen @ 1997-04-06 21:23 UTC (permalink / raw)


xmas bug.

Get it from <URL:http://www.gnus.org/gnus.tar.gz> or 
"ftp.gnus.org:/pub/emacs/gnus/".  The patch is available as
<URL:http://www.gnus.org/patches/gnus-5.4.41-5.4.42.diff.gz>

ChangeLog since last release:

Sun Apr  6 23:17:21 1997  Lars Magne Ingebrigtsen  <larsi@menja.ifi.uio.no>

	* gnus.el: Gnus v5.4.42 is released.

Sun Apr  6 23:13:50 1997  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>

	* gnus-xmas.el (gnus-xmas-summary-set-display-table): There isn't
	always a default table, it seems.

Sun Apr  6 22:45:52 1997  Aaron M. Ucko  <amu@mit.edu>

	* gnus-xmas.el (gnus-xmas-summary-set-display-table): Typo.

Sun Apr  6 22:26:52 1997  Lars Magne Ingebrigtsen  <larsi@ifi.uio.no>

	* gnus-group.el: All the sorting commands were shadowed.



-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@ifi.uio.no * Lars Magne Ingebrigtsen


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus v5.4.42 is released
  1997-04-06 21:23 Gnus v5.4.42 is released Lars Magne Ingebrigtsen
@ 1997-04-07 15:15 ` Karl Kleinpaste
  1997-04-07 15:51   ` Per Abrahamsen
  0 siblings, 1 reply; 4+ messages in thread
From: Karl Kleinpaste @ 1997-04-07 15:15 UTC (permalink / raw)
  Cc: ding

FYI, in XEmacs 19.14:

Compiling /home/karl/Emacs/gnus-5.4.42/lisp/wid-edit.el...
While compiling toplevel forms in file /home/karl/Emacs/gnus-5.4.42/lisp/wid-edit.el:
  !! File error (("Cannot open load file" "x-overlay"))

gnus-cus.el and wid-browse.el complain similarly, because they depend
on wid-edit.el.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus v5.4.42 is released
  1997-04-07 15:15 ` Karl Kleinpaste
@ 1997-04-07 15:51   ` Per Abrahamsen
  0 siblings, 0 replies; 4+ messages in thread
From: Per Abrahamsen @ 1997-04-07 15:51 UTC (permalink / raw)



Karl Kleinpaste <karl@jprc.com> writes:

> FYI, in XEmacs 19.14:
> 
> Compiling /home/karl/Emacs/gnus-5.4.42/lisp/wid-edit.el...
> While compiling toplevel forms in file /home/karl/Emacs/gnus-5.4.42/lisp/wid-edit.el:
>   !! File error (("Cannot open load file" "x-overlay"))

x-overlay.el is a new file in the widget distribution.

It is not needed in Emacs or in XEmacs 19.15.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Gnus v5.4.42 is released
@ 1997-04-07 21:39 Stainless Steel Rat
  0 siblings, 0 replies; 4+ messages in thread
From: Stainless Steel Rat @ 1997-04-07 21:39 UTC (permalink / raw)


-----BEGIN PGP SIGNED MESSAGE-----

Updated patch to easilly allow for fontification without colorization.
Lines that begin with a "-" character are prefixed by PGP with "- ".

*** cus-face.el.orig	Sun Apr  6 15:51:34 1997
- --- cus-face.el	Mon Apr  7 15:01:31 1997
***************
*** 184,189 ****
- --- 184,193 ----
  ;;      (set-face-foreground face bg frame)
  ;;      (set-face-background face fg frame))))
  
+ (defcustom custom-no-colors nil
+   "Do not use colors.
+ If t, do not use any colors.")
+ 
  (defcustom custom-background-mode nil
    "The brightness of the background.
  Set this to the symbol dark if your background color is dark, light if
***************
*** 448,454 ****
        t
      (let* ((props (custom-get-frame-properties frame))
  	   (type (plist-get props 'type))
! 	   (class (plist-get props 'class))
  	   (background (plist-get props 'background))
  	   (match t)
  	   (entries display)
- --- 452,458 ----
        t
      (let* ((props (custom-get-frame-properties frame))
  	   (type (plist-get props 'type))
! 	   (class (if custom-no-colors `mono (plist-get props 'class)))
  	   (background (plist-get props 'background))
  	   (match t)
  	   (entries display)

-----BEGIN PGP SIGNATURE-----
Version: 2.6.3
Charset: noconv

iQCVAwUBM0lpc56VRH7BJMxHAQGy9wQAlFmlg+XdpvFQWALNyWWJihuZFwOrM9p+
ZjSwyUboTl8xYqlLWRQwE2S1a9KbKeaXue7XqUNsze5spKgLhR55lsOCTEw8jgFo
t1oGfvjzL80e/gpxG3zFaT8kKFs1IYXwDh8seYQGTvNg4NcNQg3tcERiSBlUFd0u
Vi7bmrfn5Yg=
=MbqO
-----END PGP SIGNATURE-----
-- 
Rat <ratinox@peorth.gweep.net>    \ When not in use, Happy Fun Ball should be
PGP Key: at a key server near you! \ returned to its special container and
                                    \ kept under refrigeration.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1997-04-07 21:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-04-06 21:23 Gnus v5.4.42 is released Lars Magne Ingebrigtsen
1997-04-07 15:15 ` Karl Kleinpaste
1997-04-07 15:51   ` Per Abrahamsen
1997-04-07 21:39 Stainless Steel Rat

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).