unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: "José A. Romero L." <escherdragon@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: How to put this in a macro
Date: Sat, 17 Apr 2010 16:58:44 -0700 (PDT)	[thread overview]
Message-ID: <020d7028-6556-4953-b614-dcb16d98517a@j17g2000yqa.googlegroups.com> (raw)
In-Reply-To: 878w8l6fa6.fsf@linux-lqcw.site

On 17 Kwi, 21:38, Cecil Westerhof <Ce...@decebal.nl> wrote:
(...)
> beginning. So it is not really important at the moment. But I like to
> make robust code, and when in the future the macro is used where it is a
> problem when the start is after the end ... So is it possible to switch
> the values when the end is before the start?
(...)

If you're in for a bit of coding stunts :-) I guess we could have one
last try, using your name, Barry's macro and shorter variable names:

    (defmacro dcbl-set-bounds (start end)
      `(progn
         (if (equal ,start ,end)
             (setq ,start (point-min)
                   ,end (point-max))
           (setq ,start (or ,start (point-min))
                 ,end (or ,end (point-max))))

         (setq ,start (list ,start ,end)
               ,start (sort ,start '<)
               ,end   (second ,start)
               ,start (first ,start))))

it should be OK to use one of the variables being changed as the temp
var, shouldn't it?

Cheers,
--
José A. Romero L.
escherdragon at gmail
"We who cut mere stones must always be envisioning cathedrals."
(Quarry worker's creed)


  reply	other threads:[~2010-04-17 23:58 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-16 21:13 How to put this in a macro Cecil Westerhof
2010-04-16 23:28 ` José A. Romero L.
2010-04-17  3:08 ` Barry Margolin
2010-04-17  6:38   ` Cecil Westerhof
2010-04-17 10:30     ` José A. Romero L.
2010-04-17 11:07       ` Cecil Westerhof
2010-04-17 11:40         ` Cecil Westerhof
2010-04-17 15:15           ` José A. Romero L.
2010-04-17 16:49             ` Barry Margolin
2010-04-17 16:57               ` José A. Romero L.
2010-04-17 21:41                 ` Barry Margolin
2010-04-17 19:38             ` Cecil Westerhof
2010-04-17 23:58               ` José A. Romero L. [this message]
2010-04-17 12:13         ` José A. Romero L.
2010-04-17 15:14       ` Barry Margolin
2010-04-17 16:49         ` José A. Romero L.
2010-04-17 15:12     ` Barry Margolin
2010-04-18  7:50 ` Pascal J. Bourguignon

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=020d7028-6556-4953-b614-dcb16d98517a@j17g2000yqa.googlegroups.com \
    --to=escherdragon@gmail.com \
    --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.
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).