From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Newsgroups: gmane.emacs.bugs Subject: ebrowse-tags-complete-symbol Date: Tue, 16 Jul 2002 12:46:42 -0700 (PDT) Sender: bug-gnu-emacs-admin@gnu.org Message-ID: <35053.206.184.77.5.1026848802.squirrel@voidptr.com> NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1026848843 29034 127.0.0.1 (16 Jul 2002 19:47:23 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 16 Jul 2002 19:47:23 +0000 (UTC) Return-path: Original-Received: from fencepost.gnu.org ([199.232.76.164]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17UYI5-0007Y9-00 for ; Tue, 16 Jul 2002 21:47:21 +0200 Original-Received: from localhost ([127.0.0.1] helo=fencepost.gnu.org) by fencepost.gnu.org with esmtp (Exim 3.35 #1 (Debian)) id 17UYI3-0004EZ-00; Tue, 16 Jul 2002 15:47:19 -0400 Original-Received: from [206.184.77.214] (helo=didi.voidptr.com) by fencepost.gnu.org with smtp (Exim 3.35 #1 (Debian)) id 17UYHU-0004DR-00 for ; Tue, 16 Jul 2002 15:46:44 -0400 Original-Received: (qmail 1644 invoked by uid 48); 16 Jul 2002 19:46:42 -0000 Original-Received: from 206.184.77.5 (proxying for unknown, unknown) (SquirrelMail authenticated user dean@deangiberson.com) by voidptr.com with HTTP; Tue, 16 Jul 2002 12:46:42 -0700 (PDT) Original-To: X-Priority: 3 Importance: Normal X-MSMail-Priority: Normal X-Mailer: SquirrelMail (version 1.2.2) Errors-To: bug-gnu-emacs-admin@gnu.org X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Bug reports for GNU Emacs, the Swiss army knife of text editors List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.bugs:2728 X-Report-Spam: http://spam.gmane.org/gmane.emacs.bugs:2728 I'm looking for some help with the ebrowse-tags-complete-symbol function. Everything within ebrowse works great except this one function (the main reason I wish to use ebrowse). This is a copy of typical error message I get when trying to run the function (normally done from C-c b TAB): all-completions: Invalid function: # The numbers change each time I run it (of course) but the format is the same. The type of code I'm trying to work with is: //////////////////////////////////////////////////// class A { int reallyLongSillyName( void) const; }; bool someReallyImportantFunction( A &a) { // check all imputs // ... // now do work a.really return true; } //////////////////////////////////////////////////// My understanding of ebrowse-tags-complete-symbol is that if I have the insertion point following 'a.really' and run it, then I should get a list of possible results. No? I'm running a stock RH 7.3 install on a laptop, in which everthing else seems to be working. Even the other portions of ebrowse work (ie. I can build a class tree & find symbols) it's just this one element missing. What I've done to fix this: 1) tried search for the error in google, but with no results (too much noise) 2) dl'd the newest ebrowse.el from CVS and installed it to my .emacs-include dir (were I put my personal emacs scripts) 3) installed the byte compiled ebrowse.elc into my lisp/progmodes dir Still no go. Am I missing something? Is this just a problem with my RH install (and RH has not released a fix for this yet AFAIK)? Any help would be welcome. Thanks Dean Giberson