From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sven Bretfeld Newsgroups: gmane.emacs.help Subject: cal-tex-cursor commands leave empty fields Date: Wed, 3 Jan 2007 01:46:21 +0100 Message-ID: <17818.64733.694497.627153@kamaloka.dhatu> Reply-To: sven.bretfeld@gmx.ch 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: sea.gmane.org 1167785213 10400 80.91.229.12 (3 Jan 2007 00:46:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 3 Jan 2007 00:46:53 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 03 01:46:48 2007 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 1H1uHI-0007nr-9E for geh-help-gnu-emacs@m.gmane.org; Wed, 03 Jan 2007 01:46:48 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H1uHH-0003iP-MV for geh-help-gnu-emacs@m.gmane.org; Tue, 02 Jan 2007 19:46:47 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1H1uH2-0003iB-Lg for help-gnu-emacs@gnu.org; Tue, 02 Jan 2007 19:46:32 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1H1uH1-0003hN-0m for help-gnu-emacs@gnu.org; Tue, 02 Jan 2007 19:46:32 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1H1uH0-0003hF-Tw for help-gnu-emacs@gnu.org; Tue, 02 Jan 2007 19:46:30 -0500 Original-Received: from [194.158.229.48] (helo=smtp-auth-be-01.sunrise.ch) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1H1uH0-0002rR-DW for help-gnu-emacs@gnu.org; Tue, 02 Jan 2007 19:46:30 -0500 Original-Received: from kamaloka.dhatu (adsl-84-227-32-69.adslplus.ch [84.227.32.69]) by smtp-auth-be-01.sunrise.ch (8.13.1/8.13.5) with ESMTP id l030kLZq010770 for ; Wed, 3 Jan 2007 01:46:21 +0100 Original-To: help-gnu-emacs@gnu.org X-Mailer: VM 7.19 under Emacs 21.4.1 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:40110 Archived-At: Hi to all and a Happy New Year I'm starting to become an Emacs fundamentalist at the moment, but my understanding of elisp is still quite low. I was configuring the calendar/diary today when I met a problem. The commands cal-tex-cursor-month (day, week etc.) give me a nice LaTeX output but without any entries from my diary. Just empty fields. The problem might depend on my redefinition of the diary file to ~/.diary instead of ~/diary since I like my home folder to be as tidy as possible. Writing and displaying entries works. Only the LaTeX output seems to have problems. To redefine the diary file I inserted: (setq diary-file "~/.diary") to my .emacs file. This cannot be completely wrong, can it? Any idea? I give the relevant part of my .emacs file at the end of this mail. Thanks for help, Sven -------------- ;;;;;;;;;;;;;;;; ;; Diary Mode ;; ;;;;;;;;;;;;;;;; (setq diary-file "~/.diary") ;; Europ=E4isch (setq european-calendar-style 't) (setq calendar-week-start-day 1 calendar-day-name-array ["Sonntag" "Montag" "Dienstag" "Mittwoch"=20 "Donnerstag" "Freitag" "Samstag"] calendar-month-name-array ["Januar" "Februar" "M=E4rz" "April" "Mai"=20 "Juni" "Juli" "August" "September"=20 "Oktober" "November" "Dezember"]) ;; Start with diary (if there is an entry for today) (diary) ;; Timer (display-time) (add-hook 'diary-hook 'appt-make-list) (diary 0)