From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Edward O'Connor" Newsgroups: gmane.emacs.devel Subject: find-file-literally-at-point Date: Thu, 5 Nov 2009 16:13:27 -0800 Message-ID: <3b31caf90911051613w80af4cu61352a29ce5dcd77@mail.gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1257466454 27704 80.91.229.12 (6 Nov 2009 00:14:14 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 6 Nov 2009 00:14:14 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Nov 06 01:14:07 2009 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1N6CSt-00035r-5X for ged-emacs-devel@m.gmane.org; Fri, 06 Nov 2009 01:14:07 +0100 Original-Received: from localhost ([127.0.0.1]:47408 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N6CSs-0007zs-91 for ged-emacs-devel@m.gmane.org; Thu, 05 Nov 2009 19:14:06 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N6CSl-0007vU-I0 for emacs-devel@gnu.org; Thu, 05 Nov 2009 19:13:59 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N6CSd-0007gQ-Su for emacs-devel@gnu.org; Thu, 05 Nov 2009 19:13:55 -0500 Original-Received: from [199.232.76.173] (port=59221 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N6CSb-0007gA-U8 for emacs-devel@gnu.org; Thu, 05 Nov 2009 19:13:50 -0500 Original-Received: from mail-pw0-f47.google.com ([209.85.160.47]:40387) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N6CSb-0008TR-Do for emacs-devel@gnu.org; Thu, 05 Nov 2009 19:13:49 -0500 Original-Received: by pwj4 with SMTP id 4so340311pwj.26 for ; Thu, 05 Nov 2009 16:13:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=zmbZp7b/IIoSkDDAI42wVfiAQgbTC9n+IZnFkUURDAU=; b=oiRwAikgPyUQoFrfmNN51Nao132N7HoD++m7OFheHHtCYwFGyzj0R0f1kt+FTzXtJo uAd+P6BmQ4+gUOAJsWKpz8lWPQMQ/YrTbMcvQhyAjLmXXvO+FnjZ+Dc03nAwMuTjTp3R hx8v/IWFqz3qT+csezMhk4ljzYbtKTrTf2nOg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=OhgFIjS1cbUTvrjqJBtr9UqasXbhGN53BEkpMukoOQ3L/IllY26xGaM48aooJ5n/bt EkplDGzxvfN9+xPsY/IlOjRvBjgK0ZwnuhqX3ai3R1lMaDvqwNG0ETxQf7f3GIcsY1BJ dAPHONKSsimemtWf5YVvfV/BjaQfa1H9bucfM= Original-Received: by 10.142.250.38 with SMTP id x38mr357325wfh.179.1257466427124; Thu, 05 Nov 2009 16:13:47 -0800 (PST) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:116668 Archived-At: Hi, I recently found myself in need of such a function (I was going through a bunch of files to strip out their UTF-8 BOMs, if you're curious), and it was quick enough to put together: (autoload 'ffap-guesser "ffap") (defun find-file-literally-at-point () "Open the file at point (like `ffap') with `find-file-literally'." (interactive) (find-file-literally (ffap-guesser))) Is this something people might like to see added to ffap.el? I've signed papers. Thanks, Ted