# HG changeset patch # User Vinicius Jose Latorre # Date 1080786540 0 # Node ID 32aae36e32af13662a34b42cf85c8c928af1d575 # Parent 5fb1ee559bf7d5f40d4d282d1f2ea155b7a54869 Var initialization fix. diff -r 5fb1ee559bf7 -r 32aae36e32af lisp/ChangeLog --- a/lisp/ChangeLog Thu Apr 01 02:14:01 2004 +0000 +++ b/lisp/ChangeLog Thu Apr 01 02:29:00 2004 +0000 @@ -1,3 +1,11 @@ +2004-04-01 Nick Roberts + + * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler) + (gdb-source-info): Don't display source at startup, if required. + (gdb-show-main): New option. + (gdba): Update documentation. + (gdb-source): Cover case of auto-display output. + 2004-03-31 Luc Teirlinck * autorevert.el: Delete obsolete autoload's and defvar's. @@ -12,13 +20,11 @@ * files.el (buffer-stale-function): Doc change. -2004-04-01 Nick Roberts - - * progmodes/gdb-ui.el (gdb-view-source-function, gdb-view-assembler) - (gdb-source-info): Don't display source at startup, if required. - (gdb-show-main): New option. - (gdba): Update documentation. - (gdb-source): Cover case of auto-display output. +2004-03-31 Vinicius Jose Latorre + + * printing.el: New tip on Tips section. + (pr-version): New version number (6.7.4). + (pr-shell-file-name): Initialization fix. 2004-03-31 Juri Linkov diff -r 5fb1ee559bf7 -r 32aae36e32af lisp/printing.el --- a/lisp/printing.el Thu Apr 01 02:14:01 2004 +0000 +++ b/lisp/printing.el Thu Apr 01 02:29:00 2004 +0000 @@ -5,13 +5,13 @@ ;; Author: Vinicius Jose Latorre ;; Maintainer: Vinicius Jose Latorre -;; 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 @@ -187,6 +187,10 @@ ;; 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 @@ (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."