all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: help-gnu-emacs@gnu.org
Subject: Re: How to reject visiting a file
Date: Fri, 12 Dec 2014 10:56:53 -0500	[thread overview]
Message-ID: <jwv1to4vpbo.fsf-monnier+gmane.emacs.help@gnu.org> (raw)
In-Reply-To: 87fvckan07.fsf@wanadoo.es

>> (defun sm-prevent-visiting-files (filename &rest _)
>>   (if (string-match "nasty-file-name" filename)
>>       (error "Bad! Bad file name! Bad!")))
>> (advice-add 'find-file-noselect :before #'sm-prevent-visiting-files)
> That was my first idea, but it was discarded because I'm not sure about
> its coverage.  I don't know the method a given package can use to
> visit/load/read a file.

find-file-noselect is the "single entry" used normally to visit a file
in a normal file buffer, no matter how this is triggered (find-file,
find-file-other-window, clinking on an error in a *compile* buffer, ...)
so it should have excellent coverage.

This advice doesn't prevent Emacs from accessing the file (e.g. you can
still use insert-file-contents to read the file and put it in some
buffer and you can still use M-x insert-file as well), but it would be
*very* weird for a package to use such an approach over just calling
find-file-noselect.

I'll let you judge if it's good enough for your use case.


        Stefan




  reply	other threads:[~2014-12-12 15:56 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-12  1:46 How to reject visiting a file Óscar Fuentes
2014-12-12  8:01 ` Eli Zaretskii
2014-12-12 15:19   ` Óscar Fuentes
2014-12-12 15:31     ` Stefan Monnier
2014-12-12 15:47       ` Óscar Fuentes
2014-12-12 15:56         ` Stefan Monnier [this message]
2014-12-12 16:35           ` Óscar Fuentes

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=jwv1to4vpbo.fsf-monnier+gmane.emacs.help@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --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.