From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: ari@mbf.sphere.ne.jp (ARISAWA Akihiro) Newsgroups: gmane.emacs.bugs Subject: `ps-lp-system' on Solaris Date: Fri, 30 Aug 2002 15:05:32 +0900 (JST) Sender: bug-gnu-emacs-admin@gnu.org Message-ID: <20020830060532.BAE3F11D62@puyo.atesoft.advantest.co.jp> NNTP-Posting-Host: localhost.gmane.org X-Trace: main.gmane.org 1030687492 13855 127.0.0.1 (30 Aug 2002 06:04:52 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 30 Aug 2002 06:04:52 +0000 (UTC) Cc: ari@mbf.sphere.ne.jp Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 17ketl-0003aw-00 for ; Fri, 30 Aug 2002 08:04:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 17kevA-0001kQ-00; Fri, 30 Aug 2002 02:06:16 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17keuj-0001k5-00 for bug-gnu-emacs@gnu.org; Fri, 30 Aug 2002 02:05:49 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17keug-0001jp-00 for bug-gnu-emacs@gnu.org; Fri, 30 Aug 2002 02:05:48 -0400 Original-Received: from mx1.advantest.co.jp ([61.121.102.100]) by monty-python.gnu.org with esmtp (Exim 4.10) id 17keuf-0001jd-00 for bug-gnu-emacs@gnu.org; Fri, 30 Aug 2002 02:05:46 -0400 Original-Received: from miracle.advantest.co.jp (miracle.agis.advantest.co.jp [150.85.251.100]) by mx1.advantest.co.jp (Postfix) with ESMTP id 47F0123C068; Fri, 30 Aug 2002 15:05:35 +0900 (JST) Original-Received: from miracle.advantest.co.jp (localhost [127.0.0.1]) by interscan.advantest.co.jp (Postfix) with ESMTP id 0FEC223000D; Fri, 30 Aug 2002 15:05:35 +0900 (JST) Original-Received: from mei9.advantest.co.jp (ms9.mei9.advantest.co.jp [10.59.254.110]) by miracle.advantest.co.jp (Postfix) with ESMTP id E8AC5230008; Fri, 30 Aug 2002 15:05:34 +0900 (JST) Original-Received: from puyo.atesoft.advantest.co.jp (puyo [10.59.10.29]) by mei9.advantest.co.jp (8.9.3+3.2W/3.7W01100509) with ESMTP id PAA25042; Fri, 30 Aug 2002 15:05:34 +0900 (JST) Original-Received: by puyo.atesoft.advantest.co.jp (Postfix, from userid 36525) id BAE3F11D62; Fri, 30 Aug 2002 15:05:32 +0900 (JST) Original-To: bug-gnu-emacs@gnu.org Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:3362 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:3362 This bug report will be sent to the Free Software Foundation, not to your local site managers! Please write in English, because the Emacs maintainers do not have translators to read other languages for them. Your bug report will be posted to the bug-gnu-emacs@gnu.org mailing list, and to the gnu.emacs.bug news group. In GNU Emacs 21.2.1 (sparc-sun-solaris2.7, X toolkit, Xaw3d scroll bars) of 2002-03-18 on puyo configured using `configure --prefix=/usr/local-puyo/emacs-21.2 --with-xpm --with-jpeg --with-gif --with-png --without-xim' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: ja locale-coding-system: japanese-iso-8bit default-enable-multibyte-characters: t Please describe exactly what actions triggered the bug and the precise symptoms of the bug: On Solaris, the default value of `ps-lpr-command' is "lp", but `ps-lp-system' is nil. Following patch fixes this problem. Regards, -- ARISAWA Akihiro 2002-08-30 ARISAWA Akihiro * ps-print.el (ps-lp-system): Fixed typo. --- lisp/ps-print.el.orig Wed Sep 19 23:54:19 2001 +++ lisp/ps-print.el Fri Aug 30 14:49:05 2002 @@ -1508,7 +1508,7 @@ (defconst ps-windows-system (memq system-type '(emx win32 w32 mswindows ms-dos windows-nt))) (defconst ps-lp-system - (memq system-type '(usq-unix-v dgux hpux irix)))) + (memq system-type '(usg-unix-v dgux hpux irix)))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;