unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: pietru@caramail.com
To: Arthur Miller <arthur.miller@live.com>
Cc: Help Gnu Emacs <help-gnu-emacs@gnu.org>
Subject: Re: Optional Arguments
Date: Mon, 7 Dec 2020 20:42:59 +0100	[thread overview]
Message-ID: <trinity-c4a64327-a03a-4747-b9f7-5510420b9c4a-1607370179495@3c-app-mailcom-bs11> (raw)
In-Reply-To: <AM0PR06MB65771E2E2C414BE17CE0FCB996CE0@AM0PR06MB6577.eurprd06.prod.outlook.com>

Am getting an error with the following.

(defun word-markers ()
   (let ((ma mb))
      ;;(message "s: %s" (cdr (bounds-of-thing-at-point 'word)))
      (skip-chars-backward "[:alpha:]")
      (setq ma (point))
      (skip-chars-forward "[:alpha:]")
      (setq mb (point))
      (cons ma mb) ))

Debugger entered--Lisp error: (void-variable mb)
  (let ((ma mb)) (skip-chars-backward "[:alpha:]") (setq ma (point)) (skip-chars-forward "[:alpha:]") (setq mb (point)) (cons ma mb))
  word-markers()

> Sent: Monday, December 07, 2020 at 8:01 PM
> From: "Arthur Miller" <arthur.miller@live.com>
> To: pietru@caramail.com
> Cc: tomas@tuxteam.de, "Help Gnu Emacs" <help-gnu-emacs@gnu.org>
> Subject: Re: Optional Arguments
>
> pietru@caramail.com writes:
>
> > I'm having a go at returning the two values from a function
> >
> > (defun word-markers ()
> >   (let ((ma mb))
> >     (skip-chars-backward "[:alpha:]")
> >     (setq ma (point))
> >     (skip-chars-forward "[:alpha:]")
> >     (setq mb (point))
> >     (cons ma mb) ))
> >
> > (defun test ()
> >    (interactive)
> >
> >    (let ((deactivate-mark nil) bounds $ma $mb)
> >       (if (use-region-p)
> >          (setq $ma (region-beginning) $mb (region-end))
> >          (save-excursion
> >             (setq bounds (word-markers))
> >             (setq $mu (car bounds))
> >             (setq $mv (car bounds)) ))
> >
> >       (message "Bounds: %s" $bounds)
> >       (message "Region: [%s, %s]" $ma $mb)  ))
> >
> > But something's not right.
>
> You have probably made a typo when you are setq-ing 'mu' and 'mv'
>
> > (setq $mu (car bounds)) <-- introducing new variable in global scope: $mu
> > (setq $mv (car bounds)) <-- same here: $mv
>
> > (message "Region: [%s, %s]" $ma $mb) <-- potentially nil vars $ma and $mb
>
> You probably want somthing like this:
>
> (defun test ()
>    (interactive)
>    (let ((deactivate-mark nil)
>          bounds ma mb)
>      (if (use-region-p)
>          (setq ma (region-beginning) mb (region-end))
>        (save-excursion
>          (setq bounds (word-markers))
>          (setq ma (car bounds))
>          (setq mb (cdr bounds))))
>    (message "Bounds: %s" (pp bounds))
>    (message "Region: [%s %s]" ma mb)
>    (message "Region string: [%s]" (buffer-substring ma mb))))
>



  reply	other threads:[~2020-12-07 19:42 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-07  3:17 Optional Arguments pietru
2020-12-07  8:16 ` Alexis Roda
2020-12-07 12:37   ` pietru
2020-12-07 13:06     ` tomas
2020-12-07 13:35       ` Anders Dalskov
2020-12-07 14:24       ` pietru
2020-12-07 15:38         ` tomas
2020-12-07 18:13           ` pietru
2020-12-07 19:01             ` Arthur Miller
2020-12-07 19:42               ` pietru [this message]
2020-12-07 19:54                 ` Michael Heerdegen
2020-12-07 20:21                   ` pietru
2020-12-07 20:52                   ` Arthur Miller
2020-12-07 21:21                     ` pietru
2020-12-07 19:51             ` Alexis Roda
2020-12-07 15:06       ` pietru
2020-12-07 15:51         ` tomas
2020-12-07 17:51           ` pietru
2020-12-07 18:33             ` Arthur Miller
2020-12-07 18:49               ` pietru
2020-12-07 20:13             ` Stefan Monnier
2020-12-07 20:25               ` pietru
2020-12-07 20:39                 ` Christopher Dimech

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=trinity-c4a64327-a03a-4747-b9f7-5510420b9c4a-1607370179495@3c-app-mailcom-bs11 \
    --to=pietru@caramail.com \
    --cc=arthur.miller@live.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).