<?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://blog.gmane.org/gmane.emacs.code-browser">
    <title>gmane.emacs.code-browser</title>
    <link>http://blog.gmane.org/gmane.emacs.code-browser</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://comments.gmane.org/gmane.emacs.code-browser/2635"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2633"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2624"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2623"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2622"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2621"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2617"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2614"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2613"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2611"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2610"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2609"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2608"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2607"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2603"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2594"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2594"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2588"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2586"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.emacs.code-browser/2583"/>
      </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://comments.gmane.org/gmane.emacs.code-browser/2635">
    <title>Sorting Methods Buffer</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2635</link>
    <description>&lt;pre&gt;Hello All

Can anyone give me an outline of how to sort the methods buffer in ECB
so that they appear in alphabetical order. Currently the methods are
appearing in the order in which they occur in the source file.

There is some documentation online, but it assumes far more knowledge
than I have.

Chris Gordon-Smith
www.simsoup.info

------------------------------------------------------------------------------
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j
&lt;/pre&gt;</description>
    <dc:creator>Chris Gordon-Smith</dc:creator>
    <dc:date>2013-06-08T12:11:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2633">
    <title>Dedicated GDB windows</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2633</link>
    <description>&lt;pre&gt;Hi,
I am trying to create a gdb layout for ecb which worked well so far via the graphical way.
The buffers are configured with:
(require 'ecb)

(defecb-window-dedicator-to-ecb-buffer ecb-set-gdb-gud-buffer "*gud*" nil "gdb-gud"
   (switch-to-buffer gud-comint-buffer)
   (set-window-dedicated-p (selected-window) nil))

(defecb-window-dedicator-to-ecb-buffer ecb-set-gdb-io-buffer "*input/output of *" nil "gdb-io"
   (switch-to-buffer (gdb-get-buffer-create 'gdb-inferior-io))
   (set-window-dedicated-p (selected-window) nil))

(defecb-window-dedicator-to-ecb-buffer ecb-set-gdb-disas-buffer "*disassembly of *" nil "gdb-disas"
   (switch-to-buffer (gdb-get-buffer-create 'gdb-disassembly-buffer))
   (set-window-dedicated-p (selected-window) nil))

(defecb-window-dedicator-to-ecb-buffer ecb-set-gdb-vars-buffer "*locals of *" nil "gdb-vars"
   (switch-to-buffer (gdb-get-buffer-create 'gdb-locals-buffer))
   (set-window-dedicated-p (selected-window) nil))

(defecb-window-dedicator-to-ecb-buffer ecb-set-gdb-breaks-buffer "*breakpoints of *" nil "gdb-breaks"
   (switch-to-buffer (gdb-get-buffer-create 'gdb-breakpoints-buffer))
   (set-window-dedicated-p (selected-window) nil))

(defecb-window-dedicator-to-ecb-buffer ecb-set-gdb-stack-buffer "*stack frames of *" nil "gdb-stacks"
   (switch-to-buffer (gdb-get-buffer-create 'gdb-stack-buffer))
   (set-window-dedicated-p (selected-window) nil))

(defun ecb-mps-activate ()
  (interactive)
  (gdb "arm-none-eabi-gdb -i=mi")
  (find-file "~/.emacs")
  (ecb-layout-switch "jg-arm")
  (ecb-activate))

(provide 'ecb-mps)

Contents are displayed right, but when a new window is created it only works when no gud action was done. After a "step" helm is not splitting the main edit window, but taking a gdb window.
Is there a way to prevent this?

Kind Regards
Johannes Goslar
------------------------------------------------------------------------------
Own the Future-Intel&amp;amp;reg; Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest.
Compete for recognition, cash, and the chance to get your game 
on Steam. $5K grand prize plus 10 genre and skill prizes. 
Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d
&lt;/pre&gt;</description>
    <dc:creator>Johannes Goslar</dc:creator>
    <dc:date>2013-03-27T14:52:42</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2624">
    <title>ECB hangs with TRAMP</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2624</link>
    <description>&lt;pre&gt;Hello,

Is there any solution for ECB hanging when accessing source 
code on remote machines?

I am using Alex Ott's ECB, Emacs 24.3 on OS X Lion.




------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
&lt;/pre&gt;</description>
    <dc:creator>Terrence Brannon</dc:creator>
    <dc:date>2013-03-05T07:49:46</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2623">
    <title>ecb-activate doesn't honor existing window splits</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2623</link>
    <description>&lt;pre&gt;cedet: rev 8482 from trunk
ecb: commit e239f11f3e7282f518bdbc33a169198ac12fffb3 from 
https://github.com/alexott/ecb.git
emacs: GNU Emacs 24.2.1

First off, kudos to Alex getting a version of Ecb going that can be used w/ 
later versions of cedet, much appreciated.

I am using layout "left9" and in a sense want to use it a "better" sr-speedbar.  
The problem is that if I have existing split windows, the splits are not kept on 
ecb-activate (ideal) or restored on ecb-deactivate (can live with).  I have not 
found a way to get either behavior.

Another irritant has to do w/ ecb-activate on a file, ecb-deactivate, focus on a 
different file and then running ecb-activate again.  The last ecb-activate will 
switch back to the original file.  This is not what I desire.  I thought that 
(ecb-semantic-clear-toplevel-cache) would allow me to have the desired behavior, 
but no.

thank you for any help w/ either issue.



------------------------------------------------------------------------------
The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, 
is your hub for all things parallel software development, from weekly thought 
leadership blogs to news, videos, case studies, tutorials, tech docs, 
whitepapers, evaluation guides, and opinion stories. Check out the most 
recent posts - join the conversation now. http://goparallel.sourceforge.net/
&lt;/pre&gt;</description>
    <dc:creator>Erick Bodine</dc:creator>
    <dc:date>2013-02-17T03:19:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2622">
    <title>(no subject)</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2622</link>
    <description>&lt;pre&gt;http://www.ferienwohnung-eisenstein.de/qvyyc/86saylw17eiobuu/3.4k9lwe0j1ap8c5ff2o------------------------------------------------------------------------------
The Go Parallel Website, sponsored by Intel - in partnership with Geeknet, 
is your hub for all things parallel software development, from weekly thought 
leadership blogs to news, videos, case studies, tutorials, tech docs, 
whitepapers, evaluation guides, and opinion stories. Check out the most 
recent posts - join the conversation now. http://goparallel.sourceforge.net/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>george zhang</dc:creator>
    <dc:date>2013-02-16T04:34:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2621">
    <title>Can I be un-banned now?</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2621</link>
    <description>&lt;pre&gt;I was banned a while ago and I don't know why, under my original email address.

Can I be unbanned?  I've been writing here for a while under this email address.

email:dayalsoap&amp;lt; at &amp;gt;gmail.com
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Dayal, Jai</dc:creator>
    <dc:date>2013-02-14T15:49:40</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2617">
    <title>ecb activation error</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2617</link>
    <description>&lt;pre&gt;Installed version of packages are:
GNU Emacs 24.2.1 on fedora 18 64 bit version
cedet: bzr checkout
bzr://cedet.bzr.sourceforge.net/bzrroot/cedet/code/trunkcedet
ecb: git clone git://github.com/alexott/ecb.git

When I activate ecb with the command "M-x ecb-activate",
it creates 5 splitted windows. So far so good.
But when I click one of the windows, it ends up with crashes with error
messages "Wrong type argument: window-live-p, #&amp;lt;window 10&amp;gt;".
In addition, I got the following messages with the command
"toggle-debug-on-error":

Debugger entered--Lisp error: (error "ECB 2.40: Errors during the layout
setup of ECB. (error-type: file-error, error-data: (\"Process died\"))")
  signal(error ("ECB 2.40: Errors during the layout setup of ECB.
(error-type: file-error, error-data: (\"Process died\"))"))
  error("ECB %s: %s (error-type: %S, error-data: %S)" "2.40" "Errors during
the layout setup of ECB." file-error ("Process died"))
  ecb-clean-up-after-activation-failure("Errors during the layout setup of
ECB." (file-error "Process died"))
  ecb-activate--impl()
  ecb-activate-internal()
  ecb-minor-mode(1)
  ecb-activate()
  call-interactively(ecb-activate t nil)
  execute-extended-command(nil)
  call-interactively(execute-extended-command nil nil)

Any help will be appreciated.
Thanks in advance.
------------------------------------------------------------------------------
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Yong Chul Ju</dc:creator>
    <dc:date>2013-02-10T21:12:50</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2614">
    <title>ECB &amp; Fresh CEDET</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2614</link>
    <description>&lt;pre&gt;-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi

I want to use SCB with CEDET on emacs 24.2.1, but neither ecb nor ecb-snapshot works. Is there a
repo which has a working version for using it "out of the box"?

Thanks,

Rainer
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/

iEYEARECAAYFAlDAbK0ACgkQoYgNqgF2egpGWACgggqkQr1Zya0EDgEwGSQVhPsQ
PI4AnihBNwSgVTSXO4b0YbZJycB6iJAH
=bIs8
-----END PGP SIGNATURE-----


------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
&lt;/pre&gt;</description>
    <dc:creator>Rainer M Krug</dc:creator>
    <dc:date>2012-12-06T10:00:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2613">
    <title>(no subject)</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2613</link>
    <description>&lt;pre&gt;http://air-solar.com/wp-content/themes/lifestyle_20/google.html------------------------------------------------------------------------------
Keep yourself connected to Go Parallel: 
BUILD Helping you discover the best ways to construct your parallel projects.
http://goparallel.sourceforge.net_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>ingram philip</dc:creator>
    <dc:date>2012-12-03T02:31:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2611">
    <title>Ping from happy ECB user</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2611</link>
    <description>&lt;pre&gt;Hi all,

this is JFYKI:

I've loved Emacs eons ago for its editing powers, but the lack of something
like ECB made me move away from it towards full IDEs with a heavy heart.
However, I've not been too happy with any of these and always wanted my Emacs
back.

Little more than one year ago, I stumbled across ECB, instantly installed
it, switched back to Emacs and put Emacs+CEDET+ECB to productive use. Despite
a few minor quirks here and there, I'm living a happy life again. :)

Thank you, folks!


Kind regards,

Christian


My dev host system:
OS:Debian GNU/Linux 6.0
other OS:Emacs 23.2
Steroids:CEDET 1.0.1, ECB 2.40

&lt;/pre&gt;</description>
    <dc:creator>Christian Hilberg</dc:creator>
    <dc:date>2012-10-11T09:19:08</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2610">
    <title>Problem with filling methods buffer</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2610</link>
    <description>&lt;pre&gt;I have Emacs 24.1 with ECB on a Windows 7 64-bit computer.  ECB looks 
good, with one exception: when I load a Python file, I can't get it to 
fill the methods buffer.  When I try "rebuild methods buffer" (either 
via the menu or C-c . r), nothing shows, and several instances of the 
message "Error during redisplay: (wrong-type-argument arrayp nil)" 
appear in the messages buffer.

Any thoughts?

&lt;/pre&gt;</description>
    <dc:creator>Don Dwiggins</dc:creator>
    <dc:date>2012-10-02T19:00:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2609">
    <title>Difference between ecb-snapshot from elpa and Alex Ott's</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2609</link>
    <description>&lt;pre&gt;Hello everybody.

Anyone knows what is the difference between the two? Which one is more
current and can should be used for patching?

Thanks and regards,
Przemek

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html
&lt;/pre&gt;</description>
    <dc:creator>Przemysław Wojnowski</dc:creator>
    <dc:date>2012-09-16T09:18:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2608">
    <title>ECB for Emacs 24.1?</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2608</link>
    <description>&lt;pre&gt;I'm setting up my environment on a new computer.  I've got Gnu Emacs 
24.1 going, and I'd like to set up ECB.  The information at the bottom 
of the page in http://emacswiki.org/emacs/EmacsCodeBrowser is kind of 
discouraging, though.  Should I forge ahead, or drop back to earlier 
versions of Emacs, CEDET, etc.?

Any good words appreciated...

&lt;/pre&gt;</description>
    <dc:creator>Don Dwiggins</dc:creator>
    <dc:date>2012-09-16T00:30:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2607">
    <title>Compilation window to show only compilation buffer</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2607</link>
    <description>&lt;pre&gt;Is it possible to configure the ECB compilation window to /only/ show the compilation buffer (i.e. the buffer with name "*compilation*")?

Best regards,

Arne﻿

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Arne Schmitz</dc:creator>
    <dc:date>2012-08-09T08:21:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2603">
    <title>usage question</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2603</link>
    <description>&lt;pre&gt;Hi,
i am just installed ecb (i am on ubuntu). I am trying to use with a fairly
large project. Anyway, so i start emacs -&amp;gt; ecb-activate. Then M-x
ecb-customize where i set the path of the top code directory. However, i do
not get any subdirectory listings as i would have expected. Am i missing
something?

Any help is greatly appreciated (and thanks for the tools),
matt
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Matt Funk</dc:creator>
    <dc:date>2012-07-10T09:13:43</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2594">
    <title>error on M-x ecb-activate</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2594</link>
    <description>&lt;pre&gt;Hi,  I get the following error when trying to use ECB with emacs 24.1.1 on redhat linux.

("/net/hu19/pete/bin/emacs" "txn_client.cpp")
Loading /net/hu19/pete/cedet-1.1/common/cedet.el (source)...
Setting up CEDET packages...done
Loading /net/hu19/pete/cedet-1.1/common/cedet.el (source)...done
For information about GNU Emacs and the GNU system, type C-h C-a.
Loading semanticdb-file...done
Note: file is write protected [2 times]
Loading vc-svn...done
Saving file /net/hu19/pete/txn_containers/src/txn_client.cpp...
Wrote /net/hu19/pete/txn_containers/src/txn_client.cpp
ECB 2.40 uses CEDET 1.1 (contains semantic 2.1, eieio 1.4, speedbar 1.0.4).
if: Symbol's value as variable is void: stack-trace-on-error

Here is my .emacs file, if it helps

(global-set-key "\C-xg" 'goto-line)
(global-set-key "\C-c,F" 'semantic-ia-fast-jump)

(setq c-default-style "stroustrup"
      c-basic-offset 4)

(global-font-lock-mode t)
(setq font-lock-maximum-decoration t)
(setq load-path (cons "~/.emacs.d" load-path))

(require 'xcscope)
(require 'crosshairs)

(load-file "~/cedet-1.1/common/cedet.el")

;; Enable EDE (Project Management) features
(global-ede-mode t)
(semantic-load-enable-minimum-features)
(semantic-load-enable-code-helpers)
(add-to-list 'load-path
                     "/net/hu19/jdayal3/ecb-2.40")

(require 'ecb-autoloads)


It loads CEDET correctly, but some how ecb goofs.  What am I missing here?

Thanks a lot!
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Dayal, Jai</dc:creator>
    <dc:date>2012-07-03T16:16:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2594">
    <title>error on M-x ecb-activate</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2594</link>
    <description>&lt;pre&gt;Hi,  I get the following error when trying to use ECB with emacs 24.1.1 on redhat linux.

("/net/hu19/pete/bin/emacs" "txn_client.cpp")
Loading /net/hu19/pete/cedet-1.1/common/cedet.el (source)...
Setting up CEDET packages...done
Loading /net/hu19/pete/cedet-1.1/common/cedet.el (source)...done
For information about GNU Emacs and the GNU system, type C-h C-a.
Loading semanticdb-file...done
Note: file is write protected [2 times]
Loading vc-svn...done
Saving file /net/hu19/pete/txn_containers/src/txn_client.cpp...
Wrote /net/hu19/pete/txn_containers/src/txn_client.cpp
ECB 2.40 uses CEDET 1.1 (contains semantic 2.1, eieio 1.4, speedbar 1.0.4).
if: Symbol's value as variable is void: stack-trace-on-error

Here is my .emacs file, if it helps

(global-set-key "\C-xg" 'goto-line)
(global-set-key "\C-c,F" 'semantic-ia-fast-jump)

(setq c-default-style "stroustrup"
      c-basic-offset 4)

(global-font-lock-mode t)
(setq font-lock-maximum-decoration t)
(setq load-path (cons "~/.emacs.d" load-path))

(require 'xcscope)
(require 'crosshairs)

(load-file "~/cedet-1.1/common/cedet.el")

;; Enable EDE (Project Management) features
(global-ede-mode t)
(semantic-load-enable-minimum-features)
(semantic-load-enable-code-helpers)
(add-to-list 'load-path
                     "/net/hu19/jdayal3/ecb-2.40")

(require 'ecb-autoloads)


It loads CEDET correctly, but some how ecb goofs.  What am I missing here?

Thanks a lot!
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Dayal, Jai</dc:creator>
    <dc:date>2012-07-03T16:16:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2588">
    <title>can't resize ecb buffers</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2588</link>
    <description>&lt;pre&gt;Hi,

I'm running ecb-2.40 on gnu emacs for windows compiled with mingw(I got it
from the official binary repos). And after tweaking the cedet files to get
ecb to run I can't resize the ecb buffers.
The backtrace I get looks like:

Debugger entered--Lisp error: (wrong-type-argument arrayp nil)
  tree-buffer-get-event-column((down-mouse-1 (#&amp;lt;window 12 on  *ECB
Methods*&amp;gt; mode-line (105 . 168) 38581933 nil 1 (13 . 11) nil (1 . 8) (8 .
16))) t)
  tree-buffer-mouse-hscroll((down-mouse-1 (#&amp;lt;window 12 on  *ECB Methods*&amp;gt;
mode-line (105 . 168) 38581933 nil 1 (13 . 11) nil (1 . 8) (8 . 16))))
  call-interactively(tree-buffer-mouse-hscroll nil nil)

I have tried looking in tree-buffers.el for clues but couldn't fathom the
problem.

regards
John
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>John Collins Sunday</dc:creator>
    <dc:date>2012-06-28T01:26:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2586">
    <title>ecb data sources</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2586</link>
    <description>&lt;pre&gt;Hi all,

thanks a lot developing ECB.

While CEDET is a great tool at it's own, it's also known being heavy sometimes.

OTOH data needed by ECB already are provided by several other Emacs components, by dired and imenu for example - AFAIU.

What about making it a modular approach, removing the dependency from CEDET?

All the best,

Andreas

--
http://launchpad.net/python-mode
http://launchpad.net/s-x-emacs-werkstatt/

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Andreas Röhler</dc:creator>
    <dc:date>2012-06-21T11:39:07</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2583">
    <title>Directories buffer:</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2583</link>
    <description>&lt;pre&gt;The directories buffer in ECB is quite useful. I specified some project directories with aliases as well. However, when I open a file (mostly via emacsclient), the directory buffer opens up the root folder (/), instead of the appropriate project tree. Why, and how can I change that? I would assume that it tries to match the full pathname prefix to the directories in ecb-source-path﻿.

Best regards,

Arne ------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Arne Schmitz</dc:creator>
    <dc:date>2012-06-14T07:15:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.emacs.code-browser/2581">
    <title>Error when activating ECB</title>
    <link>http://comments.gmane.org/gmane.emacs.code-browser/2581</link>
    <description>&lt;pre&gt;With the new-cedet branch of ECB I sometimes get the following error when trying to do ecb-activate:

ecb-clean-up-after-activation-failure: ECB 2.40: Errors during the layout setup of ECB. (error-type: file-error, error-data: ("Opening directory" "permission denied" "/home/someuser"))

If I wait for a minute or two and try again, ECB will activate. The directory in question is indeed not readable by me, but I am not even consciously trying to access it.

Best regards,

Arne﻿

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Ecb-list mailing list
Ecb-list&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ecb-list
&lt;/pre&gt;</description>
    <dc:creator>Arne Schmitz</dc:creator>
    <dc:date>2012-06-14T06:55:50</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.emacs.code-browser">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.emacs.code-browser</link>
  </textinput>
</rdf:RDF>
