unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: "Roland Winkler" <Roland.Winkler@physik.uni-erlangen.de>
To: rms@gnu.org
Cc: bug-gnu-emacs@gnu.org
Subject: Re: nesting of unwind-protect and atomic-change-group
Date: Sun, 3 Feb 2008 23:53:15 +0100	[thread overview]
Message-ID: <18342.17883.831798.646291@tfkp07.physik.uni-erlangen.de> (raw)
In-Reply-To: <E1JLCyK-0006p2-0S@fencepost.gnu.org>

On Sat Feb 2 2008 Richard Stallman wrote:
>     When combining unwind-protect and atomic-change-group I found that
>     putting unwind-protect outermost worked for me (i.e., an unwindform
>     moving point to the buffer location where the error occured was
>     obeyed), whereas doing it the other way round didn't work for me
>     (the unwindform was ignored). 
> 
> An unwind-protect will _work_ either inside or outside
> of atomic-change-group.  Whatever problem you encountered
> must be more specific.  I can't guess what it might be.

OK, here is a test case, more or less similar to what I really want
to do, tested with emacs -q for GNU Emacs 22.1.2 (i686-pc-linux-gnu,
X toolkit, Xaw3d scroll bars)

When I run fun1 in a buffer containing the following lines of text

hello world bar
hello world bar
hello world foo
hello world bar
hello world bar

fun1 throws an error and puts point at the buffer location the error
refers to. fun2 does not put point at the buffer location that
corresponds to the error. The only difference between fun1 and fun2
is the order of unwind-protect and atomic-change-group.
(I find it counterintuitive that both functions put the message 
"search "foo"" in the *Messages* buffer before the error message,
but I expect that this has to do with how the error is handled.)

Roland


(defun fun1 ()
  "In current buffer replace word \"bar\" by \"baz\".
Throw error for word \"foo\" and move point to malicious word. Works"
  (interactive)
  (let (error-word)
    ;; `atomic-change-group' inside `unwind-protect'
    (unwind-protect
        (atomic-change-group
          (save-excursion
            (goto-char (point-min))
            (while (re-search-forward "\\<\\w+\\>" nil t)
              (let ((word (match-string 0)))
                (cond ((string= word "foo")
                       (setq error-word word)
                       (error "word \"foo\" in text"))
                      ((string= word "bar")
                       (replace-match "baz")))))))
      (when error-word
        (message "search \"foo\"")
        ;; move point to where error occured
        (goto-char (point-min))
        (re-search-forward "foo")
        (goto-char (match-beginning 0))))))

(defun fun2 ()
  "In current buffer replace word \"bar\" by \"baz\".
Throw error for word \"foo\". Code does not move point to malicious word"
  (interactive)
  (let (error-word)
    ;; `unwind-protect' inside `atomic-change-group'
    (atomic-change-group
      (unwind-protect
          (save-excursion
            (goto-char (point-min))
            (while (re-search-forward "\\<\\w+\\>" nil t)
              (let ((word (match-string 0)))
                (cond ((string= word "foo")
                       (setq error-word word)
                       (error "word \"foo\" in text"))
                      ((string= word "bar")
                       (replace-match "baz"))))))
        (when error-word
          (message "search \"foo\"")
          ;; move point to where error occured
          (goto-char (point-min))
          (re-search-forward "foo")
          (goto-char (match-beginning 0)))))))




  parent reply	other threads:[~2008-02-03 22:53 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-02-01 16:48 nesting of unwind-protect and atomic-change-group Roland Winkler
2008-02-02  7:39 ` Richard Stallman
2008-02-02 17:54   ` Roland Winkler
2008-02-03 22:53   ` Roland Winkler [this message]
     [not found]   ` <mailman.6908.1202079211.18990.bug-gnu-emacs@gnu.org>
2008-02-04 15:21     ` Stefan Monnier
     [not found]   ` <mailman.6883.1201974855.18990.bug-gnu-emacs@gnu.org>
2008-02-04 15:23     ` Stefan Monnier
     [not found] <mailman.6846.1201884554.18990.bug-gnu-emacs@gnu.org>
2008-02-02  4:31 ` 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

  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=18342.17883.831798.646291@tfkp07.physik.uni-erlangen.de \
    --to=roland.winkler@physik.uni-erlangen.de \
    --cc=bug-gnu-emacs@gnu.org \
    --cc=rms@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 public inbox

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

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).