comparison etc/PROBLEMS @ 51694:b819086c2c6a

Add workaround for "Windows only" printers
author Jason Rumney <jasonr@gnu.org>
date Sun, 29 Jun 2003 20:22:07 +0000
parents 12371b18ce00
children 08ca5a28493e
comparison
equal deleted inserted replaced
51693:04628db4db1a 51694:b819086c2c6a
780 defines compatibility functions which trick ps-print into thinking it 780 defines compatibility functions which trick ps-print into thinking it
781 runs in XEmacs, and look for the prologue files in a wrong directory. 781 runs in XEmacs, and look for the prologue files in a wrong directory.
782 782
783 The solution is to upgrade X-Symbol to a later version. 783 The solution is to upgrade X-Symbol to a later version.
784 784
785 * lpr commands don't work on MS-Windows with some cheap printers.
786
787 This problem may also strike other platforms, but the solution is
788 likely to be a global one, and not Emacs specific.
789
790 Many cheap inkjet, and even some cheap laser printers, do not
791 print plain text anymore, they will only print through graphical
792 printer drivers. A workaround on MS-Windows is to use Windows' basic
793 built in editor to print (this is possibly the only useful purpose it
794 has):
795
796 (setq printer-name "") ;; notepad takes the default
797 (setq lpr-command "notepad") ;; notepad
798 (setq lpr-switches nil) ;; not needed
799 (setq lpr-printer-switch "/P") ;; run notepad as batch printer
800
785 * On systems with shared libraries you might encounter run-time errors 801 * On systems with shared libraries you might encounter run-time errors
786 from the dynamic linker telling you that it is unable to find some 802 from the dynamic linker telling you that it is unable to find some
787 shared libraries, for instance those for Xaw3d or image support. 803 shared libraries, for instance those for Xaw3d or image support.
788 These errors mean Emacs has been linked with a library whose shared 804 These errors mean Emacs has been linked with a library whose shared
789 library is not in the default search path of the dynamic linker. 805 library is not in the default search path of the dynamic linker.