bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#8252: Please add a function to get files in *grep*


From: Lennart Borgman
Subject: bug#8252: Please add a function to get files in *grep*
Date: Mon, 14 Mar 2011 22:46:05 +0100

For example something like this (which I just added to
ourcomments-util.el in nXhtml) works now:

(defun grep-grepped-file (pt)
  "Return grepped file at PT in a `grep-mode' buffer.
The returned file name is relative."
  (let* ((msg (get-text-property (point) 'compilation-message))
         (loc (when msg (compilation--message->loc msg)))
         (file (when loc (caar (compilation--loc->file-struct loc)))))
    file))





reply via email to

[Prev in Thread] Current Thread [Next in Thread]