From: Ihor Radchenko <yantar92@posteo.net>
To: Olivier Lischer <olivier.lischer@liolin.ch>
Cc: emacs-orgmode@gnu.org
Subject: Re: [PATCH] ob-tangle: Add flag to optionally remove files before writing
Date: Tue, 30 Jan 2024 11:36:28 +0000 [thread overview]
Message-ID: <87y1c78343.fsf@localhost> (raw)
In-Reply-To: <87y1c8dm65.fsf@liolin.ch>
Olivier Lischer <olivier.lischer@liolin.ch> writes:
>> I suggest changing your patch, setting the default value of
>> `org-babel-tangle-remove-file-before-write' to 'auto.
>> This will keep the current behaviour but fall back to delete + write new
>> file when the tangle target is read-only.
>> That will avoid feature regression.
>
> I changed the path as you proposed.
Thanks, but I think that I was not clear enough explaining what I wanted
you to change.
> -(defcustom org-babel-tangle-uncomment-comments nil
> +(defcustom org-babel-tangle-uncomment-comments 'auto
I did not ask to change `org-babel-tangle-uncomment-comments'.
I meant that you allow the new variable you propose
(`org-babel-tangle-remove-file-before-write') to have 3 values:
nil, t, and 'auto.
> +(defcustom org-babel-tangle-remove-file-before-write nil
... with default being 'auto, not nil.
> - ;; We do not erase, but overwrite previous file
> - ;; to preserve any existing symlinks.
> - (write-region nil nil file-name)
> + (when (and (file-exists-p file-name) org-babel-tangle-remove-file-before-write)
> + (delete-file file-name))
> + (write-region nil nil file-name)
Then, with the default value of 'auto, you only call `delete-file' when
the file is read-only.
It would also help to extend the comment ";; We do not erase...", not
just delete it.
--
Ihor Radchenko // yantar92,
Org mode contributor,
Learn more about Org mode at <https://orgmode.org/>.
Support Org development at <https://liberapay.com/org-mode>,
or support my work at <https://liberapay.com/yantar92>
next prev parent reply other threads:[~2024-01-30 11:34 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-23 20:25 [PATCH] ob-tangle: Add flag to optionally remove files before writing Olivier Lischer
2024-01-24 16:38 ` Ihor Radchenko
2024-01-28 19:07 ` Olivier Lischer
2024-01-28 21:11 ` Ihor Radchenko
2024-01-29 18:32 ` Olivier Lischer
2024-01-30 11:36 ` Ihor Radchenko [this message]
[not found] ` <87sf1fmwnc.fsf@localhost>
[not found] ` <87jzmrggcw.fsf@liolin.ch>
2024-02-28 11:07 ` Ihor Radchenko
2024-02-28 19:01 ` Olivier Lischer
2024-02-29 10:43 ` Ihor Radchenko
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.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87y1c78343.fsf@localhost \
--to=yantar92@posteo.net \
--cc=emacs-orgmode@gnu.org \
--cc=olivier.lischer@liolin.ch \
/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/org-mode.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).