From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: DaveLG526 Newsgroups: gmane.emacs.help Subject: Re: Printing with emacs: Not working Date: Sun, 1 Mar 2009 20:04:40 -0800 (PST) Organization: http://groups.google.com Message-ID: References: <8dcb3b6f-ddbb-412a-a051-dd1624d960b2@r15g2000prh.googlegroups.com> <873ae0l938.fsf@bornier.net> <-sqdnZ77OKfLvjXUnZ2dnUVZ_uqdnZ2d@sysmatrix.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1235968854 23261 80.91.229.12 (2 Mar 2009 04:40:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 2 Mar 2009 04:40:54 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 02 05:42:10 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Ldzyh-0005iM-Uv for geh-help-gnu-emacs@m.gmane.org; Mon, 02 Mar 2009 05:42:08 +0100 Original-Received: from localhost ([127.0.0.1]:38880 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LdzxM-0003gL-HM for geh-help-gnu-emacs@m.gmane.org; Sun, 01 Mar 2009 23:40:44 -0500 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!s9g2000prg.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 63 Original-NNTP-Posting-Host: 99.52.200.227 Original-X-Trace: posting.google.com 1235966680 5220 127.0.0.1 (2 Mar 2009 04:04:40 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Mon, 2 Mar 2009 04:04:40 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: s9g2000prg.googlegroups.com; posting-host=99.52.200.227; posting-account=vEXdlgoAAABytWM2VDAZ3Be0_-uekw5A User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6 (.NET CLR 3.5.30729), gzip(gfe), gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.help:167204 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:62503 Archived-At: On Mar 1, 1:01=A0pm, Lennart Borgman wrote: > > Well I gave it a try but I must be missing something as a new Item > > does not appear in the emacs File menu and no printing occurs. > > > Here is my .emacs file: > > > (require 'hfyview) > > See the beginning of the file hfyview.el. (require 'hfyview) (require 'easymenu) (require 'htmlfontify) ;;Org-mode settings (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-font-lock-mode 1) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D This is from my hfyview.el . With the hfyview-quick-print-in-files- menu t line thought this would add the menu items but no luck so far. I have the hffview.el file in my lisp folder under EmacsW32 diretory. My .emacs file is in the EmacsW32 directoty. >From hfyview.el =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D (defcustom hfyview-quick-print-in-files-menu t) "Add Quick print entries to File menu if non-nil. If you set this to nil you have to restart Emacs to get rid of the Quick Print entry." :type 'boolean :set (lambda (sym val) (set-default sym val) (if val (hfyview-add-to-files-menu))) :group 'hfy-view) (defvar hfyview-print-visible t "Non-nil means show Quick Print entry on the file menu.") =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Maybe my emacs file is not being read on startup..still investigating that. Regards.. Dave