help-emacs-windows
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [h-e-w] Printing in 21.2


From: John McCabe
Subject: Re: [h-e-w] Printing in 21.2
Date: Tue, 30 Apr 2002 15:37:44 +0100

Jeff

> Hi All.  I switched from 20.7 to 21.2 on Windows 2000 yesterday.  I can
> select File->Print Buffer, and that works fine.  I can't seem to get any of
> the post-script items to print anything.  The only thing I set in my .emacs
> is the following (which worked fine in 20.7):
> 
> (let ((printer "\\\\JRANCIER\\hp_laser_jet"))
>   (set-variable 'ps-use-face-background nil)
>   (setq ps-printer-name printer)
>   (setq printer-name printer))

Looks a bit old-fashioned! If, in your .emacs, you have a custom-set-
variables section, change it to something like the following:

(custom-set-variables
 '(printer-name "//JRANCIER/hp_laser_jet" t)
 '(ps-printer-name "//JRANCIER/hp_laser_jet" t)
 '(ps-use-face-background nil))
(custom-set-faces)

I guess (though I haven't tried it) that something like:

(let ((printer "//JRANCIER/hp_laser_jet"))
  (set-variable 'ps-use-face-background nil)
  (setq ps-printer-name printer)
  (setq printer-name printer))

Might work. Possibly worth a try.

Hope this is of use.

Best Regards
John McCabe




reply via email to

[Prev in Thread] Current Thread [Next in Thread]