From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: F. Xavier Noria Newsgroups: gmane.emacs.help Subject: Re: Journal package for Emacs? Date: Sat, 7 Sep 2002 17:45:49 +0200 Sender: help-gnu-emacs-admin@gnu.org Message-ID: <20020907174549.5fcc239c.fxn@retemail.es> References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1031410091 23199 127.0.0.1 (7 Sep 2002 14:48:11 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 7 Sep 2002 14:48:11 +0000 (UTC) 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 17ngsb-00061u-00 for ; Sat, 07 Sep 2002 16:48:09 +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 17ngsY-00063F-00; Sat, 07 Sep 2002 10:48:06 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 17ngrd-0005iR-00 for help-gnu-emacs@gnu.org; Sat, 07 Sep 2002 10:47:09 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 17ngrb-0005i1-00 for help-gnu-emacs@gnu.org; Sat, 07 Sep 2002 10:47:09 -0400 Original-Received: from smtp05.iddeo.es ([62.81.186.15] helo=smtp05.retemail.es) by monty-python.gnu.org with esmtp (Exim 4.10) id 17ngrb-0005ho-00 for help-gnu-emacs@gnu.org; Sat, 07 Sep 2002 10:47:07 -0400 Original-Received: from conway.localdomain ([62.174.25.55]) by smtp05.retemail.es (InterMail vM.5.01.05.08 201-253-122-126-108-20020526) with SMTP id <20020907144704.VKUS21653.smtp05.retemail.es@conway.localdomain> for ; Sat, 7 Sep 2002 16:47:04 +0200 Original-To: help-gnu-emacs@gnu.org In-Reply-To: X-Mailer: Sylpheed version 0.8.1 (GTK+ 1.2.10; i386-portbld-freebsd4.4) Errors-To: help-gnu-emacs-admin@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.help:1123 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:1123 On Sat, 07 Sep 2002 14:20:12 GMT mike hardy wrote: : I'll just use bookmarks for the journal file)? I'm most interested in : just being able to insert the date into a buffer. I tried looking for : some existing function in Emacs to allow me to do that but I don't find : anything. >From my .emacs: (defun fxn-insert-time-stamp () (interactive) (insert (time-stamp-string))) (global-set-key (kbd "C-c t") 'fxn-insert-time-stamp) -- fxn