comparison lisp/printing.el @ 54675:32aae36e32af

Var initialization fix.
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Thu, 01 Apr 2004 02:29:00 +0000
parents be1994e2a5ce
children 1c61b23bf7f9
comparison
equal deleted inserted replaced
54674:5fb1ee559bf7 54675:32aae36e32af
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004 3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004
4 ;; Free Software Foundation, Inc. 4 ;; Free Software Foundation, Inc.
5 5
6 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br> 6 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
7 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br> 7 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
8 ;; Time-stamp: <2004/03/28 23:37:38 vinicius> 8 ;; Time-stamp: <2004/03/31 23:14:47 vinicius>
9 ;; Keywords: wp, print, PostScript 9 ;; Keywords: wp, print, PostScript
10 ;; Version: 6.7.3 10 ;; Version: 6.7.4
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ 11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
12 12
13 (defconst pr-version "6.7.3" 13 (defconst pr-version "6.7.4"
14 "printing.el, v 6.7.3 <2004/03/28 vinicius> 14 "printing.el, v 6.7.4 <2004/03/31 vinicius>
15 15
16 Please send all bug fixes and enhancements to 16 Please send all bug fixes and enhancements to
17 Vinicius Jose Latorre <vinicius@cpqd.com.br> 17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
18 ") 18 ")
19 19
184 ;; 3. Don't try to print a dynamic buffer, that is, a buffer which is 184 ;; 3. Don't try to print a dynamic buffer, that is, a buffer which is
185 ;; modifying while `printing' tries to print. Eventually you got an error 185 ;; modifying while `printing' tries to print. Eventually you got an error
186 ;; message. Instead, save the dynamic buffer to a file or copy it in 186 ;; message. Instead, save the dynamic buffer to a file or copy it in
187 ;; another buffer and, then, print the file or the new static buffer. 187 ;; another buffer and, then, print the file or the new static buffer.
188 ;; An example of dynamic buffer is the *Messages* buffer. 188 ;; An example of dynamic buffer is the *Messages* buffer.
189 ;;
190 ;; 4. When running Emacs on Windows with cygwin, check if the
191 ;; `pr-shell-file-name' variable is set to the proper shell. This shell
192 ;; will execute the commands to preview/print the buffer, file or directory.
189 ;; 193 ;;
190 ;; 194 ;;
191 ;; Using `printing' 195 ;; Using `printing'
192 ;; ---------------- 196 ;; ----------------
193 ;; 197 ;;
2302 :type 'boolean 2306 :type 'boolean
2303 :group 'printing) 2307 :group 'printing)
2304 2308
2305 2309
2306 (defcustom pr-shell-file-name 2310 (defcustom pr-shell-file-name
2307 (if (eq pr-path-style 'windows) 2311 (if (and (not pr-cygwin-system)
2312 ps-windows-system)
2308 "cmdproxy.exe" 2313 "cmdproxy.exe"
2309 shell-file-name) 2314 shell-file-name)
2310 "*Specify file name to load inferior shells from." 2315 "*Specify file name to load inferior shells from."
2311 :type 'string 2316 :type 'string
2312 :group 'printing) 2317 :group 'printing)