<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Finally got real time compilation to work in Emacs</title>
	<atom:link href="http://skybert.wordpress.com/2007/11/09/finally-got-real-time-compilation-to-work-in-emacs/feed/" rel="self" type="application/rss+xml" />
	<link>http://skybert.wordpress.com/2007/11/09/finally-got-real-time-compilation-to-work-in-emacs/</link>
	<description>random rants on technology I care about</description>
	<lastBuildDate>Sun, 08 Nov 2009 17:10:21 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Core</title>
		<link>http://skybert.wordpress.com/2007/11/09/finally-got-real-time-compilation-to-work-in-emacs/#comment-26</link>
		<dc:creator>Core</dc:creator>
		<pubDate>Mon, 12 Nov 2007 09:59:02 +0000</pubDate>
		<guid isPermaLink="false">http://skybert.wordpress.com/2007/11/09/finally-got-real-time-compilation-to-work-in-emacs/#comment-26</guid>
		<description>Hi,

try the following elisp bit:

(defun credmp/flymake-display-err-minibuf () 
  &quot;Displays the error/warning for the current line in the minibuffer&quot;
  (interactive)
  (let* ((line-no             (flymake-current-line-no))
         (line-err-info-list  (nth 0 (flymake-find-err-info flymake-err-info line-no)))
         (count               (length line-err-info-list))
         )
    (while (&gt; count 0)
      (when line-err-info-list
        (let* ((file       (flymake-ler-file (nth (1- count) line-err-info-list)))
               (full-file  (flymake-ler-full-file (nth (1- count) line-err-info-list)))
               (text (flymake-ler-text (nth (1- count) line-err-info-list)))
               (line       (flymake-ler-line (nth (1- count) line-err-info-list))))
          (message &quot;[%s] %s&quot; line text)
          )
        )
      (setq count (1- count)))))

Just bind it to a usefull key and you have messages in your message area

Regards

Core</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>try the following elisp bit:</p>
<p>(defun credmp/flymake-display-err-minibuf ()<br />
  &#8220;Displays the error/warning for the current line in the minibuffer&#8221;<br />
  (interactive)<br />
  (let* ((line-no             (flymake-current-line-no))<br />
         (line-err-info-list  (nth 0 (flymake-find-err-info flymake-err-info line-no)))<br />
         (count               (length line-err-info-list))<br />
         )<br />
    (while (&gt; count 0)<br />
      (when line-err-info-list<br />
        (let* ((file       (flymake-ler-file (nth (1- count) line-err-info-list)))<br />
               (full-file  (flymake-ler-full-file (nth (1- count) line-err-info-list)))<br />
               (text (flymake-ler-text (nth (1- count) line-err-info-list)))<br />
               (line       (flymake-ler-line (nth (1- count) line-err-info-list))))<br />
          (message &#8220;[%s] %s&#8221; line text)<br />
          )<br />
        )<br />
      (setq count (1- count)))))</p>
<p>Just bind it to a usefull key and you have messages in your message area</p>
<p>Regards</p>
<p>Core</p>
]]></content:encoded>
	</item>
</channel>
</rss>
