unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Oliver Scholz <alkibiades@gmx.de>
Subject: Re: Insert date from calendar
Date: Fri, 19 Sep 2003 12:16:03 +0200	[thread overview]
Message-ID: <uu179w0bg.fsf@ID-87814.user.dfncis.de> (raw)
In-Reply-To: mailman.415.1063961906.21628.help-gnu-emacs@gnu.org

KIRCHE Sébastien <Sebastien.Kirche@sage.com> writes:
[...]
> (defun my-insert-date ()  (interactive)  (insert (calendar-date-string
> (calendar-current-date)))) 
> I would like to tune this to insert the date corresponding to where the
> cursor is currently
> in the calendar

(when (and (boundp 'calendar-buffer)
	   (buffer-live-p (get-buffer calendar-buffer))
  (let ((str
	 (with-current-buffer calendar-buffer
	   (calendar-date-string (calendar-cursor-to-date t)))))
    (insert str)))


    Oliver
-- 
Jour du Travail de l'Année 211 de la Révolution
Liberté, Egalité, Fraternité!

       reply	other threads:[~2003-09-19 10:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.415.1063961906.21628.help-gnu-emacs@gnu.org>
2003-09-19 10:16 ` Oliver Scholz [this message]
2003-09-19  9:00 Insert date from calendar KIRCHE Sébastien

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=uu179w0bg.fsf@ID-87814.user.dfncis.de \
    --to=alkibiades@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).