summaryrefslogtreecommitdiff
path: root/lisp/printing.el
diff options
context:
space:
mode:
authorVinicius Jose Latorre <viniciusjl@ig.com.br>2004-04-01 02:29:00 +0000
committerVinicius Jose Latorre <viniciusjl@ig.com.br>2004-04-01 02:29:00 +0000
commit1db42319cc64605abcca863ecf847e7830c2f364 (patch)
treeaccfecdb4751d01d091f932e0ed325a31e75be7c /lisp/printing.el
parent37d9d82fe1a783c3a2614f538a513da63f6f6f8c (diff)
downloademacs-1db42319cc64605abcca863ecf847e7830c2f364.tar.gz
Var initialization fix.
Diffstat (limited to 'lisp/printing.el')
-rw-r--r--lisp/printing.el15
1 files changed, 10 insertions, 5 deletions
diff --git a/lisp/printing.el b/lisp/printing.el
index 1a5a743d99a..1e65fdba4ea 100644
--- a/lisp/printing.el
+++ b/lisp/printing.el
@@ -5,13 +5,13 @@
;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
-;; Time-stamp: <2004/03/28 23:37:38 vinicius>
+;; Time-stamp: <2004/03/31 23:14:47 vinicius>
;; Keywords: wp, print, PostScript
-;; Version: 6.7.3
+;; Version: 6.7.4
;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
-(defconst pr-version "6.7.3"
- "printing.el, v 6.7.3 <2004/03/28 vinicius>
+(defconst pr-version "6.7.4"
+ "printing.el, v 6.7.4 <2004/03/31 vinicius>
Please send all bug fixes and enhancements to
Vinicius Jose Latorre <vinicius@cpqd.com.br>
@@ -187,6 +187,10 @@ Please send all bug fixes and enhancements to
;; another buffer and, then, print the file or the new static buffer.
;; An example of dynamic buffer is the *Messages* buffer.
;;
+;; 4. When running Emacs on Windows with cygwin, check if the
+;; `pr-shell-file-name' variable is set to the proper shell. This shell
+;; will execute the commands to preview/print the buffer, file or directory.
+;;
;;
;; Using `printing'
;; ----------------
@@ -2304,7 +2308,8 @@ It's used by `pr-interface'."
(defcustom pr-shell-file-name
- (if (eq pr-path-style 'windows)
+ (if (and (not pr-cygwin-system)
+ ps-windows-system)
"cmdproxy.exe"
shell-file-name)
"*Specify file name to load inferior shells from."