From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Nellinux" Newsgroups: gmane.emacs.help Subject: ps-print-buffer does not print Date: 25 Feb 2006 03:00:16 -0800 Organization: http://groups.google.com Message-ID: <1140865216.087402.31870@i40g2000cwc.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1141188047 15172 80.91.229.2 (1 Mar 2006 04:40:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 1 Mar 2006 04:40:47 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 01 05:40:43 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FEJ8d-0001g5-Qa for geh-help-gnu-emacs@m.gmane.org; Wed, 01 Mar 2006 05:40:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FEJ8d-0006W9-0i for geh-help-gnu-emacs@m.gmane.org; Tue, 28 Feb 2006 23:40:35 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!i40g2000cwc.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 49 Original-NNTP-Posting-Host: 151.46.147.195 Original-X-Trace: posting.google.com 1140865221 17981 127.0.0.1 (25 Feb 2006 11:00:21 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Sat, 25 Feb 2006 11:00:21 +0000 (UTC) User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:1.8.0.1) Gecko/20060124 Firefox/1.5.0.1,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: i40g2000cwc.googlegroups.com; posting-host=151.46.147.195; posting-account=uHtvFwwAAADf6bR2AUoqIs9i2d4Ee6SD Original-Xref: shelby.stanford.edu gnu.emacs.help:137797 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:33427 Archived-At: I have this problem: all commands involving postscript printing in Emacs do not work. I have this components: - Slackware 10.2 - GNU Emacs 21.4.2 - CUPS 1.1.23 - ESP Ghostscript 815.00 I have no customization printing commands in file dot-emacs (see at the bottom). Other applications (Firefox, OpenOffice, lpr, a2ps) print properly. I have that both at home and at office; with older Slackware and Emacs version all commands worked. Have you any idea ? Thanks Nello Sola ------------------------------------------------------------------------------------------------------------------ dot-emcs ------------------------------------------------------------------------------------------------------------------ (custom-set-variables '(case-fold-search t) '(current-language-environment "Latin-1") '(default-input-method "latin-1-prefix") '(diary-file "~/.diary" t) '(global-font-lock-mode t nil (font-lock)) '(tool-bar-mode nil nil (tool-bar))) (custom-set-faces '(default ((t (:stipple nil :background "black" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 110 :width normal : family "adobe-courier"))))) (setq default-major-mode 'text-mode) (define-key global-map "\C-\M-l" 'goto-line) (setq load-path (cons "~/.elisp" load-path)) (autoload 'html-helper-mode "html-helper-mode" "Yay HTML" t) (setq auto-mode-alist (cons '("\\.html?$" . html-helper-mode) auto-mode-alist)) (autoload 'php-mode "php-mode" "PHP editing mode" t) (add-to-list 'auto-mode-alist '("\\.php\\'" . php-mode)) ------------------------------------------------------------------------------------------------------------------