From xemacs-m  Tue Dec 10 23:00:32 1996
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19]) by xemacs.cs.uiuc.edu (8.8.3/8.8.3) with ESMTP id XAA27184 for <xemacs-beta@xemacs.org>; Tue, 10 Dec 1996 23:00:31 -0600 (CST)
Received: (from steve@localhost)
          by altair.xemacs.org (8.8.4/8.8.4)
	  id VAA31753; Tue, 10 Dec 1996 21:10:27 -0800
Sender: steve@xemacs.org
To: xemacs-beta@xemacs.org
Subject: Re: xemacs-19.15-b3 autoloading ...
References: <199612102321.PAA11394@ws1.leonora.xo.com>
X-Url: http://www.miranova.com/%7Esteve/
Mail-Copies-To: never
X-Face: #!T9!#9s-3o8)*uHlX{Ug[xW7E7Wr!*L46-OxqMu\xz23v|R9q}lH?cRS{rCNe^'[`^sr5"
 f8*@r4ipO6Jl!:Ccq<xoV[Qz2u8<8-+Vwf2gzJ44lf_/y9OaQ`@#Q65{U4/TC)i2`~/M&QI$X>p:9I
 OSS'2{-)-4wBnVeg0S\O4Al@)uC[pD|+
X-Attribution: sb
From: Steven L Baur <steve@miranova.com>
In-Reply-To: Vladimir Ivanovic's message of Tue, 10 Dec 1996 15:21:31 -0800
Mime-Version: 1.0 (generated by tm-edit 7.95)
Content-Type: text/plain; charset=US-ASCII
Date: 10 Dec 1996 21:10:26 -0800
Message-ID: <m2via9oed9.fsf@altair.xemacs.org>
Lines: 104
X-Mailer: Red Gnus v0.72/XEmacs 20.0

>>>>> "Vladimir" == Vladimir Ivanovic <vladimir@ws1.leonora.xo.com> writes:

Vladimir> * ps-print uses gnus/message.el and that doesn't seem to be
Vladimir>   autoloaded (any more)

*** xemacs-19.15-b3/lisp/packages/ps-print.el	Sun Nov 10 15:02:51 1996
--- xemacs-19.15-b4/lisp/packages/ps-print.el	Tue Dec 10 20:59:54 1996
***************
*** 1900,1905 ****
--- 1900,1907 ----
  	  (message "Formatting...done")))))
  
  ;; XEmacs change
+ (require 'message)	; Until We can get some sensible autoloads, or
+ 			; message-flatten-list gets put somewhere decent.
  ;; Permit dynamic evaluation at print time of ps-lpr-switches
  (defun ps-do-despool (filename)
    (if (or (not (boundp 'ps-spool-buffer))

*** xemacs-19.15-b3/lisp/packages/lpr.el	Sun Sep 15 11:32:32 1996
--- xemacs-19.15-b4/lisp/packages/lpr.el	Tue Dec 10 21:07:23 1996
***************
*** 95,100 ****
--- 95,103 ----
    (interactive "r")
    (print-region-1 start end lpr-switches t))
  
+ ;; XEmacs change
+ (require 'message)	; Until We can get some sensible autoloads, or
+ 			; message-flatten-list gets put somewhere decent.
  (defun print-region-1 (start end switches page-headers)
    ;; On some MIPS system, having a space in the job name
    ;; crashes the printer demon.  But using dashes looks ugly
***************
*** 106,111 ****
--- 109,115 ----
  	(binary-process-input buffer-file-type)
  	(binary-process-output buffer-file-type)
  	(width tab-width)
+ 	nswitches
  	switch-string)
      (save-excursion
        (if page-headers
***************
*** 116,124 ****
  					 (list lpr-headers-switches)
  				        lpr-headers-switches)
  				     switches))))
        (setq switch-string
! 	    (if switches (concat " with options "
! 				 (mapconcat 'identity switches " "))
  	      ""))
        (message "Spooling%s..." switch-string)
        (if (/= tab-width 8)
--- 120,137 ----
  					 (list lpr-headers-switches)
  				        lpr-headers-switches)
  				     switches))))
+       (setq nswitches (message-flatten-list    ; XEmacs
+ 		       (mapcar '(lambda (arg)  ; Dynamic evaluation
+ 				  (cond ((stringp arg) arg)
+ 					((functionp arg) (apply arg nil))
+ 					((symbolp arg) (eval arg))
+ 					((consp arg) (apply (car arg)
+ 							    (cdr arg)))
+ 					(t nil)))
+ 			       switches)))
        (setq switch-string
! 	    (if nswitches (concat " with options "
! 				 (mapconcat 'identity nswitches " "))
  	      ""))
        (message "Spooling%s..." switch-string)
        (if (/= tab-width 8)
***************
*** 150,156 ****
  			   ;; These belong in pr if we are using that.
  			   (and lpr-add-switches lpr-headers-switches
  				(list "-T" title))
! 			   switches)))
        (if (markerp end)
  	  (set-marker end nil))
        (message "Spooling%s...done" switch-string))))
--- 163,169 ----
  			   ;; These belong in pr if we are using that.
  			   (and lpr-add-switches lpr-headers-switches
  				(list "-T" title))
! 			   nswitches)))
        (if (markerp end)
  	  (set-marker end nil))
        (message "Spooling%s...done" switch-string))))


Vladimir> * cc-mode doesn't seem to be autoloaded anymore

Correct.

Vladimir> Was java-font-lock-keywords-3 removed deliberately?

No.  I do not know where those went.  I don't see them in 20.0 either.
-- 
steve@miranova.com baur
Unsolicited commercial e-mail will be billed at $250/message.
"Bill Clinton is a bore.  He doesn't have a creative bone in his
body."  -- David Brinkley

