all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Andreas Politz <politza@fh-trier.de>
To: help-gnu-emacs@gnu.org
Subject: Re: Adding `#' at each new line with text until the end of the file
Date: Thu, 20 May 2010 21:05:06 +0200	[thread overview]
Message-ID: <87k4qyiecd.fsf@fh-trier.de> (raw)
In-Reply-To: 87sk5neuwz.fsf@merciadriluca-station.MERCIADRILUCA

Merciadri Luca <Luca.Merciadri@student.ulg.ac.be> writes:

>> Here with find-file-noselect as it has been advised (not tested):
>>
>> (require 'cl)
>> (defmacro* with-file (file-and-options &body body)
>>   "Processes BODY with a buffer on the given file.
>> DO:              find-file or find-file-literally, process body, and
>>                  optionally save the buffer and kill it.
>>                  save is not done if body exits exceptionnaly.
>>                  kill is always done as specified.
>> FILE-AND-OPTION: either an atom evaluated to a path,
>>                  or (path &key (save t) (kill t) (literal nil))
>> "
>>   (if (atom file-and-options)
>>       `(with-file (,file-and-options) ,@body)
>>       ;; destructuring-bind is broken, we cannot give anything else than nil
>>       ;; as default values:
>>       (destructuring-bind (path &key (save nil savep) (kill nil killp)
>>                                 (literal nil literalp))
>>           file-and-options
>>         (unless savep (setf save t))
>>         (unless killp (setf kill t))
>>         `(unwind-protect
>>               (progn
>>                 (find-file-noselect ,path t ,literal)
>>                 (prog1 (save-excursion ,@body)
>>                   ,(when save `(save-buffer 1))))
>>            ,(when kill
>>                   `(kill-buffer (current-buffer)))))))
>>

This macro may kill buffers at random, because `find-file-noselect' does
not make the files buffer current.

But even with `find-file', this may go wrong, in case the function does
not succeed or body changes the current buffer.

-ap


      parent reply	other threads:[~2010-05-20 19:05 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-05-17 16:05 Adding `#' at each new line with text until the end of the file Merciadri Luca
2010-05-17 18:26 ` Pascal J. Bourguignon
2010-05-17 20:11   ` Merciadri Luca
     [not found]     ` <87zkzyjkcb.fsf@kuiper.lan.informatimago.com>
2010-05-18 10:09       ` Merciadri Luca
2010-05-18 12:06         ` Pascal J. Bourguignon
2010-05-18 16:47           ` Merciadri Luca
2010-05-18 20:27             ` Pascal J. Bourguignon
2010-05-19 16:08               ` Merciadri Luca
2010-05-20 13:18                 ` Pascal J. Bourguignon
2010-05-20 18:09                   ` Merciadri Luca
2010-05-20 19:05                 ` Andreas Politz [this message]

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=87k4qyiecd.fsf@fh-trier.de \
    --to=politza@fh-trier.de \
    --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.