all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Rupert" <rswarbrick@googlemail.com>
Subject: Re: Flexible Killing
Date: 10 Jan 2007 17:15:33 -0800	[thread overview]
Message-ID: <1168478133.448778.302780@77g2000hsv.googlegroups.com> (raw)
In-Reply-To: <1168455652.420443.245060@i39g2000hsf.googlegroups.com>

haws wrote:
> Hello!
>
> I'm a emacs beginner and would like to write a function that performs
> this:
> If there is a region selected, then it would kill-region, otherwise it
> would kill-line.
> Can anyone tell me how? I bet it's 2 lines of code!
>
> Thank you very much,
>
> Hugo

Well, I'm a bit of a beginner too, but came up with this:

(defun flexikill ()
  (interactive)
  (let ((m nil))
    (if (not (setq m (mark 1)))
        (kill-line)
      (let ((p (point)))
        (if (= p m)
            (kill-line)
          (kill-region (region-beginning)
                       (region-end)))))))

The problem is that we can't use (interactive 'r') as if there is no
region, an (uncatchable) error message is printed, rather than us being
able to do something. Thus we need to check that a mark exists in the
buffer and that it's not equal to point (otherwise kill-region wouldn't
make much sense).

Rupert

  reply	other threads:[~2007-01-11  1:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-01-10 19:00 Flexible Killing haws
2007-01-11  1:15 ` Rupert [this message]
2007-01-11  5:36   ` Stefan Monnier

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=1168478133.448778.302780@77g2000hsv.googlegroups.com \
    --to=rswarbrick@googlemail.com \
    /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.