From: "Garreau\, Alexandre" <galex-713@galex-713.eu>
To: help-gnu-emacs@gnu.org
Subject: point moved despite save-excursion, after deleting/reinserting region
Date: Wed, 17 Oct 2018 03:43:16 +0200 [thread overview]
Message-ID: <87r2gpic0b.fsf@portable.galex-713.eu> (raw)
Hi,
I spent some time on one or two functions that modified a org source
block, evaled it, and restored it as before the modification: after
narrowing, I saved it using buffer-substring, and restored it using
delete-region then insert what I saved.
However doing that my point ends either at the beginning or the end of
what I inserted, even after save-excursion is over.
How to fix that? I fill the simple way of restoring changes, without
loosing what evaluation did print outside of narrow (nor exiting this
restriction so that to save the result of evaluation, undo, and insert
it back), is indeed to delete/reinsert everything. It would be too
complex (though feasible) to store each individual change along with the
position and length of it, to restore it back afterwards, and I’m not
sure it’ll perfectly fix it the same.
Here the two functions (along with original kbd macro implementations,
not working because you can’t nest 0-prefix loops in macros):
#+BEGIN_SRC emacs-lisp
(fset 'src-arg
[?\C-s ?: ?\C-m ?\C-? ?\C- ?\C-\M-s ?\\ ?< ?\[ ?_ ?\[ ?: ?a ?l ?p ?h
?a ?: ?\] ?\] ?\[ ?_ ?0 ?- ?9 ?\[ ?: ?a ?l ?p ?h ?a ?: ?\] ?\] ?* ?\\
?> ?\C-m ?\C-u ?\M-x ?r ?e ?a ?d ?- ?v ?a ?r ?\C-m ?\C-u ?\C-x ?q
?\C-m])
(defun src-arg (&optional prefix bound)
"Search until BOUND for argument to replace for a prompted value.
With 0 prefix argument, repeat until search fails."
(interactive "p")
(if (zerop prefix)
(while (src-arg nil bound))
(when-let ((search (search-forward ":" bound t)))
(prog1 search
(delete-char -1)
(push-mark)
(search-forward-regexp "\\<[_[:alpha:]][_0-9[:alpha:]]*\\>" bound)
(activate-mark)
(let ((var-value (read-string (format "Enter value for %s: " (match-string 0)))))
(delete-region (mark) (point))
(insert (sql-obj-string var-value))
(pop-mark))))))
(fset 'src-args
[?\C-x ?n ?b ?\M-> ?\C- ?\M-< ?\M-w ?\C-n ?\C-u ?0 ?\M-x ?s ?r ?c ?-
?a ?r ?g return ?\C-c ?\C-c ?y ?e ?s return ?\M-< ?\C-y ?\C- ?\M->
?\C-w ?\C-a ?\C-x ?n ?w])
(defun src-args (&optional prefix)
""
(interactive "P")
(save-mark-and-excursion ;; doesn’t work
(org-narrow-to-block)
(let* ((end (point-max))
(orig (buffer-substring (goto-char (point-min)) end)))
(widen) ;; optional, so that the user still see the rest of
;; buffer and isn’t like “OMG WHATS HAPPANING”
(forward-line)
(while (src-arg prefix end))
(let (org-confirm-babel-evaluate)
(org-ctrl-c-ctrl-c))
(save-restriction ;; these may be optional,
(org-narrow-to-block) ;; see before
(delete-region (point-min) (point-max))
(insert orig)))))
#+END_SRC
next reply other threads:[~2018-10-17 1:43 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-17 1:43 Garreau, Alexandre [this message]
2018-10-17 16:12 ` point moved despite save-excursion, after deleting/reinserting region Eli Zaretskii
2018-10-17 20:13 ` Garreau, Alexandre
2018-10-18 2:38 ` Eli Zaretskii
2018-10-18 9:50 ` Garreau, Alexandre
2018-10-18 11:32 ` Yuri Khan
2018-10-18 11:45 ` Garreau, Alexandre
2018-10-18 13:16 ` Eli Zaretskii
2018-10-18 18:08 ` Saving (and finding) markers (Was: Re: point moved despite save-excursion, after deleting/reinserting region) Garreau, Alexandre
2018-10-18 18:32 ` Eli Zaretskii
2018-10-18 19:36 ` Saving (and finding) markers Garreau, Alexandre
2018-10-18 20:11 ` Eli Zaretskii
2018-10-19 1:15 ` Stefan Monnier
2018-10-19 6:38 ` Eli Zaretskii
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=87r2gpic0b.fsf@portable.galex-713.eu \
--to=galex-713@galex-713.eu \
--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.