From xemacs-m  Fri Mar  7 09:07:04 1997
Received: from isy.liu.se (root@isy.liu.se [130.236.20.1])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id JAA18238
	for <xemacs-beta@xemacs.org>; Fri, 7 Mar 1997 09:07:02 -0600 (CST)
Received: from ludde.isy.liu.se (ludde.isy.liu.se [130.236.24.29])
	by isy.liu.se (8.8.5/8.8.5) with SMTP id QAA00220
	for <xemacs-beta@xemacs.org>; Fri, 7 Mar 1997 16:07:01 +0100 (MET)
Received: by ludde.isy.liu.se (SMI-8.6/SMI-SVR4)
	id QAA04640; Fri, 7 Mar 1997 16:06:56 +0100
Date: Fri, 7 Mar 1997 16:06:56 +0100
Message-Id: <199703071506.QAA04640@ludde.isy.liu.se>
From: Anders Stenman <stenman@isy.liu.se>
To: xemacs-beta@xemacs.org
Subject: Problems with dired-shell.el in 19.15beta97
Mime-Version: 1.0 (generated by tm-edit 7.105)
Content-Type: text/plain; charset=US-ASCII

The following code in 'dired-shell.el' loses when allowing dynamic
arguments in lpr-switches, i.e., functions and symbols that evaluates to
strings:

(defvar dired-postscript-print-command
  (concat
   (if (boundp 'lpr-command)
       lpr-command
     (if (memq system-type
	       '(usg-unix-v hpux silicon-graphics-unix))
	 "lp"
       "lpr"))
   (if (and (boundp 'lpr-switches) lpr-switches)
       (concat " "
	       (mapconcat 'identity lpr-switches " ")
	       " ")
     " "))
  "Command to print a postscript file.")

/Anders

