all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg <embe8573@student.uu.se>
To: help-gnu-emacs@gnu.org
Subject: Re: writing ledger mode, date picker
Date: Sun, 08 Nov 2015 22:38:39 +0000	[thread overview]
Message-ID: <87twownmkw.fsf@student.uu.se> (raw)
In-Reply-To: 87egg0z420.fsf@gmail.com

jenia.ivlev@gmail.com (jenia.ivlev) writes:

> Hello Emanuel.
>
> I'm trying to write a program that will prompt the
> user for a date and insert it into a buffer called
> "asti" ;)

(require 'calendar)

(defun prompt-date-into-asti ()
  (interactive)
  (let*((date        (calendar-read-date))
        (date-string (format-time-string "%Y-%m-%d\n" date))
        (buffer      (get-buffer-create "asti")) )
    (with-current-buffer buffer
      (insert date-string) )))

> I'm having some success but also some problems.
> My problem, I think, is that I'm using the
> `(when...)` function wrong.

`when' is equivalent to `if' with no need for `progn',
only `when' doesn't come with an "else" branch, as do
`if'. So this

    (when something do)

is the same as

    (if something do)

The rule of thumb is:

    1. When you need an "else" branch, use `if' (or
       `cond'), with `progn' if necessary to scope
       the branches.

    2. When you don't need an "else" branch, and the
       condition is positive, i.e. (if something ... )
       then use `when' and there is no need for
       a progn (in the `if' sense at least).

    3. When you don't need an "else" branch, and the
       condition is *negative*, i.e. (if (not
       something) ... ) then use `unless', otherwise
       it is as with `when'.

> Here is the newest iteration of the program ...
> (define-key calendar-mode-map (kbd "RET") 'get-date)

That isn't anything you'd do in a defun. Do that when
you initialize calendar-mode if so. On the whole, you
code is too complicated, like you try to do to many
things at once. If you can describe what you want to
do, it'll be more easy to help.

-- 
underground experts united
http://user.it.uu.se/~embe8573




  reply	other threads:[~2015-11-08 22:38 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-07 20:30 writing ledger mode, date picker jenia.ivlev
2015-11-07 21:18 ` jenia.ivlev
2015-11-07 23:49   ` Emanuel Berg
2015-11-08 19:25     ` jenia.ivlev
2015-11-08 22:38       ` Emanuel Berg [this message]
2015-11-09  2:42       ` Yuri Khan
2015-11-09  3:45         ` Emanuel Berg
2015-11-09  4:35           ` jenia.ivlev
2015-11-08  0:47 ` Drew Adams
2015-11-08 19:37   ` jenia.ivlev
2015-11-09  5:39 ` jenia.ivlev
2015-11-10  1:15   ` Emanuel Berg
2015-11-10  1:22   ` Emanuel Berg

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

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

  git send-email \
    --in-reply-to=87twownmkw.fsf@student.uu.se \
    --to=embe8573@student.uu.se \
    --cc=help-gnu-emacs@gnu.org \
    /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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.