<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.emacs.semantic">
    <title>gmane.emacs.semantic</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3327"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3326"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3325"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3324"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3323"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3322"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3321"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3320"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3319"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3318"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3317"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3316"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3315"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3314"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3313"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3312"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3311"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3310"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3309"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.emacs.semantic/3308"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3327">
    <title>Re: How the includes statements in a cpp project areanalyzed by semantic</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3327</link>
    <description>&lt;pre&gt;Hi Pamela,

I'm glad you figured out what was going on with your includes.

In C or C++, an include of the form:

#include &amp;lt;file.h&amp;gt;

is for system includes.  They would be found in the list of paths listed 
in the ede-cpp-root-project's :system-include-path slot.

Includes of the form:

#include "file.h"

is for includes not on the system include path, but perhaps local to the 
file being compiled, or in a project include path.  These would be in 
the :include-path slot of your project.

I think Semantic may be a bit overly pedantic on this distinction, as 
compilers seem willing to take whatever it can find.

If you code is using the wrong kind of #include brackets you can 
compensate by populating different slots in your EDE project, though the 
system include path can't do the same filename expansion as described 
for the :include-path slot.

http://gcc.gnu.org/onlinedocs/cpp/Include-Syntax.html

The patch I attached might 'fix' the problem for you, but it is better 
to use the right kind of include.

Eri&lt;/pre&gt;</description>
    <dc:creator>Eric M. Ludlam</dc:creator>
    <dc:date>2013-05-16T01:54:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3326">
    <title>How the includes statements in a cpp project areanalyzed by semantic</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3326</link>
    <description>&lt;pre&gt;Hi,

last week I had some problems with semantic and the include statements in
my .cpp and .h files, many of the includes were not being found and
analyzed by semantics

After several tries I noticed that after changing from #include &amp;lt;statement&amp;gt;
to the respective #include "statement", everything started to work as
expected. Is this a normal behavior? Or maybe is it related to how I
defined the project using ede-cpp-root-project?

My definition is:

*(ede-cpp-root-project "FLANN"*
*                :name "Flann1.8"*
*                :file
"/home/carrenom/Documents/PhD/Code/Kd-Trees_NNS/Flann/CMakeLists.txt"*
* :include-path '("/test"*
*                                "/examples"*
* "/src/cpp/flann"*
* "/src/cpp/flann/algorithms"*
*                                "/src/cpp/flann/io"*
* "/src/cpp/flann/mpi"*
* "/src/cpp/flann/nn"*
* "/src/cpp/flann/util"*
*                               )*
*                :system-include-path '("/usr/include/"
"/usr/include/c++/4.7/")*
*                :spp-table '(("isUnix" . &lt;/pre&gt;</description>
    <dc:creator>Pamela Carreño</dc:creator>
    <dc:date>2013-05-14T08:28:28</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3325">
    <title>Re: semantic-toggle-decoration-style error</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3325</link>
    <description>&lt;pre&gt;Quoting "Eric M. Ludlam" &amp;lt;eric&amp;lt; at &amp;gt;siege-engine.com&amp;gt;:

works a treat. thank you for doing that

------------------------------------------------------------------------------
AlienVault Unified Security Management (USM) platform delivers complete
security visibility with the essential security capabilities. Easily and
efficiently configure, manage, and operate all of your security controls
from a single console and one unified framework. Download a free trial.
http://p.sf.net/sfu/alienvault_d2d
&lt;/pre&gt;</description>
    <dc:creator>Pete Beardmore</dc:creator>
    <dc:date>2013-05-14T08:09:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3324">
    <title>Re: Semantic causes replace-match to leave point at wrong place</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3324</link>
    <description>&lt;pre&gt;
Ah, thanks for identifying that.  I checked in the recommended change. 
It appears to pass my tests, so we should be good to go.

Thanks
Eric

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
&lt;/pre&gt;</description>
    <dc:creator>Eric M. Ludlam</dc:creator>
    <dc:date>2013-05-13T11:49:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3323">
    <title>Re: Semantic causes replace-match to leave point at wrong place</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3323</link>
    <description>&lt;pre&gt;
No. I only see it occasionally when editing C++.

semantic's incremental parser.

An overlay modification hook was a speculation that later investigation
revealed was wrong. It is semantic-change-function that breaks the Elisp
manual's advisory:

"The functions you use in these [change] hooks should save and restore the
match data if they do anything that uses regular expressions; otherwise,
they will interfere in bizarre ways with the editing operations that call
them. "


Hard to reproduce, but easy to fix: put a save-match-data in
semantic-change-function or perhaps semantic-mru-bookmark-change-hook-fcn .

uses those hooks I checked, it it doesn't move the cursor either.

It's not a save-excursion that's missing, but a save-match-data.
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
le&lt;/pre&gt;</description>
    <dc:creator>Barry OReilly</dc:creator>
    <dc:date>2013-05-13T00:24:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3322">
    <title>Re: Semantic causes replace-match to leave point atwrong place</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3322</link>
    <description>&lt;pre&gt;
It looks hard to reproduce...

The most likely part of Semantic dealing with overlays changing is 
semantic's incremental parser.

In semantic/edit.el, see semantic-edits-change-function-handle-changes. 
  It doesn't move point, but it calls out to other hooks.  The tools 
that uses those hooks I checked, it it doesn't move the cursor either.

There are lots of other tools that highlight tags, etc.  I'm not sure 
which should be looked at.

Lastly, since it seems random, maybe it is related to timers?

Have better ways of reproducing this been found?

Thanks
Eric

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
&lt;/pre&gt;</description>
    <dc:creator>Eric M. Ludlam</dc:creator>
    <dc:date>2013-05-12T21:58:15</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3321">
    <title>Re: semantic-toggle-decoration-style error</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3321</link>
    <description>&lt;pre&gt;
Hi again Pete,

I think you are right.  I looked at your solution, and I think we can 
tidy this up nicely.  I've checked in a change that allows a new 
decoration mode to be specified with a load feature.  When that is done, 
it uses autoload tokens to create the mode (so you can toggle it) and 
when it is first used, will load in the necessary code to operate the mode.

My brief experiments shows this works well after adding a declaration 
for the decorate-on-includes in the mode.el file.  I think this will be 
helpful since it doesn't require changes to the canned configurations, 
which means it will work with stock Emacs also, which does not have those.

Hopefully this works well for you also.
Thanks
Eric

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early&lt;/pre&gt;</description>
    <dc:creator>Eric M. Ludlam</dc:creator>
    <dc:date>2013-05-12T18:19:36</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3320">
    <title>Semantic causes replace-match to leave point atwrong place</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3320</link>
    <description>&lt;pre&gt;See discussion at: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=14281
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may_______________________________________________
cedet-semantic mailing list
cedet-semantic&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cedet-semantic
&lt;/pre&gt;</description>
    <dc:creator>Barry OReilly</dc:creator>
    <dc:date>2013-05-09T22:19:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3319">
    <title>Re: semantic-toggle-decoration-style error</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3319</link>
    <description>&lt;pre&gt;
Quoting "Eric M. Ludlam" &amp;lt;eric&amp;lt; at &amp;gt;siege-engine.com&amp;gt;:

hi,

thanks for coming back to me on this, you are of course correct, and i  
should have been more thorough. after my 'fix' i could actually have  
sent any garbage string to the toggle function and have recorded the  
desired positive result - namely 'semantic-decoration-styles'  
containing the missing 'semantic-decoration-on-include' style  
following a successful loading of my config file. i recorded a false  
positive :(

it is still an issue though, and i'm not one for avoiding a bug if i  
know it's there. toggling the includes decoration doesn't work unless  
'some mode' (and it's not 'global-semantic-decoration-mode' that does  
this!) has loaded the 'semantic/decorate/include.el' file which is  
where the includes style gets added to the styles list. you hit the  
bug i refer to, as the valid name 'semantic-decoration-on-includes' is  
not in the list. so for example

   (require cedet-devel-load)
   (global-semantic-decoration-mode t)
   (semant&lt;/pre&gt;</description>
    <dc:creator>Pete Beardmore</dc:creator>
    <dc:date>2013-05-09T09:54:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3318">
    <title>Re: semantic-toggle-decoration-style error</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3318</link>
    <description>&lt;pre&gt;Hi Pete,

While I think your patch certainly prevents the error, I doubt it is 
doing what you might hope.   You are effectively turning your call to 
enable decorations on include into a no-op.

I think a better fix is to throw a useful error, such as 'no such 
decoration mode' or something like that.

Of course, the line you added isn't necessary, since that happens by 
default when you enable decoration mode.  Was there something you were 
trying to accomplish with the below code snippet?

Eric

On 05/02/2013 01:32 PM, Pete Beardmore wrote:

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
&lt;/pre&gt;</description>
    <dc:creator>Eric M. Ludlam</dc:creator>
    <dc:date>2013-05-07T01:01:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3317">
    <title>Re: fix semantic-displayor-tooltip-mode verbose</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3317</link>
    <description>&lt;pre&gt;Hi Pete,

Thanks for the patch.

I'll check it in with my next round of dev changes.

Eric

On 04/18/2013 04:05 PM, Pete Beardmore wrote:

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and 
their applications. This 200-page book is written by three acclaimed 
leaders in the field. The early access version is available now. 
Download your free book today! http://p.sf.net/sfu/neotech_d2d_may
&lt;/pre&gt;</description>
    <dc:creator>Eric M. Ludlam</dc:creator>
    <dc:date>2013-05-07T00:34:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3316">
    <title>semantic-toggle-decoration-style error</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3316</link>
    <description>&lt;pre&gt;
hello,

using:

(semantic-load-enable-excessive-code-helpers)
(semantic-toggle-decoration-style "semantic-decoration-on-include" t)

in my .emacs i get:

eval: Wrong type argument: consp, nil

caused by defun semantic-toggle-decoration-style

     ;; Store the new flag.
     (setcdr style flag)

when style is set (via let) as nil

fix attached, cheers
Pete
------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with &amp;lt;2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1_______________________________________________
cedet-semantic mailing list
cedet-semantic&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cedet-semantic
&lt;/pre&gt;</description>
    <dc:creator>Pete Beardmore</dc:creator>
    <dc:date>2013-05-02T17:32:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3315">
    <title>Re: fix semantic-displayor-tooltip-mode verbose</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3315</link>
    <description>&lt;pre&gt;Quoting Pete Beardmore &amp;lt;elbeardmorez&amp;lt; at &amp;gt;msn.com&amp;gt;:


[slaps head!] patch attached this time

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis &amp;amp; visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter_______________________________________________
cedet-semantic mailing list
cedet-semantic&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cedet-semantic
&lt;/pre&gt;</description>
    <dc:creator>Pete Beardmore</dc:creator>
    <dc:date>2013-04-18T20:05:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3314">
    <title>fix semantic-displayor-tooltip-mode verbose</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3314</link>
    <description>&lt;pre&gt;hello.

apologies, i found a mistake in my work from 'way back when' (8092).  
luckily this mode isn't the default!

best wishes,
Pete



------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis &amp;amp; visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
&lt;/pre&gt;</description>
    <dc:creator>Pete Beardmore</dc:creator>
    <dc:date>2013-04-18T18:45:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3313">
    <title>wisi-parse generalized LALR parser; fixed major bug</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3313</link>
    <description>&lt;pre&gt;For those trying the generalized LALR parser at
http://stephe-leake.org/emacs/ada-mode/emacs-ada-mode.html, I've just
posted a new version with a major bug fix.

The list of pending actions was built incorrectly. I'm not clear why I
didn't notice this until now!

&lt;/pre&gt;</description>
    <dc:creator>Stephen Leake</dc:creator>
    <dc:date>2013-04-16T14:41:05</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3312">
    <title>Re: Cedet on Mac (latest CEDET snapshot)</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3312</link>
    <description>&lt;pre&gt;
Use

make EMACS=&amp;lt;full path to Emacs binary&amp;gt;

To see why, simply run the Emacs from /usr/bin.

-David

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis &amp;amp; visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
&lt;/pre&gt;</description>
    <dc:creator>David Engster</dc:creator>
    <dc:date>2013-04-15T18:37:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3311">
    <title>Re: Fwd: Problem between semantic and auto-complete</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3311</link>
    <description>&lt;pre&gt;HI,

I've tried both suggestions, but I'm still having the same issue. AC and
semantic work fine separately, but together they don't.

Any other suggestion?

Pamela


On Thu, Apr 11, 2013 at 6:12 PM, Alex Ott &amp;lt;alexott&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:




&lt;/pre&gt;</description>
    <dc:creator>Pamela Carreño</dc:creator>
    <dc:date>2013-04-14T18:38:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3310">
    <title>Cedet on Mac (latest CEDET snapshot)</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3310</link>
    <description>&lt;pre&gt;I get this error:

make[2]: Nothing to be done for `all'.
make -C eieio
    &amp;gt; eieio.elc

In toplevel form:
eieio.el:57:1:Error: Symbol's value as variable is void: slot-unbound

Any suggestions? It's Mac OSX 10.8.3

GNU Emacs 24.3.1

Thanks,
Jai
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis &amp;amp; visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter_______________________________________________
cedet-semantic mailing list
cedet-semantic&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cedet-semantic
&lt;/pre&gt;</description>
    <dc:creator>Jai Dayal</dc:creator>
    <dc:date>2013-04-13T04:33:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3309">
    <title>Re: semantic-idle-symbol-highlight-facenotcustomizable</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3309</link>
    <description>&lt;pre&gt;I looked at region first, but region was big and complicated looking.

I figured if I had to figure that all out, I might as well make 
something better.  ;)

I'll probably get around to making the patch at some point.  I found a 
new catapult contest I'm trying to prep for so other things have been slow.

http://www.higgins.org/siegetheday

Eric

On 04/12/2013 06:48 PM, Barry OReilly wrote:

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis &amp;amp; visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
&lt;/pre&gt;</description>
    <dc:creator>Eric M. Ludlam</dc:creator>
    <dc:date>2013-04-13T02:49:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3308">
    <title>Re: semantic-idle-symbol-highlight-face notcustomizable</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3308</link>
    <description>&lt;pre&gt;Alternatively, instead of assigning the region face to it as a defvar, you
could use the same color values as region, but making
semantic-idle-symbol-highlight-face a defface.


On Mon, Apr 8, 2013 at 1:20 PM, Barry OReilly &amp;lt;gundaetiapo&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis &amp;amp; visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter_______________________________________________
cedet-semantic mailing list
cedet-semantic&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cedet-semantic
&lt;/pre&gt;</description>
    <dc:creator>Barry OReilly</dc:creator>
    <dc:date>2013-04-12T22:48:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.emacs.semantic/3307">
    <title>Re: Fwd: Problem between semantic and auto-complete</title>
    <link>http://permalink.gmane.org/gmane.emacs.semantic/3307</link>
    <description>&lt;pre&gt;ok, looks correct...

here is my configs:
https://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-cedet.el &amp;amp;
https://github.com/alexott/emacs-configs/blob/master/rc/emacs-rc-autocomplete.el


On Thu, Apr 11, 2013 at 5:24 PM, Pamela Carreño &amp;lt;carrenopamela&amp;lt; at &amp;gt;gmail.com&amp;gt;wrote:




&lt;/pre&gt;</description>
    <dc:creator>Alex Ott</dc:creator>
    <dc:date>2013-04-11T16:12:50</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.emacs.semantic">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.semantic</link>
  </textinput>
</rdf:RDF>
