From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: I don't have C++ intellisense with company-mode Date: Thu, 23 Jan 2014 09:11:19 -0500 Message-ID: References: <1390424024.2349.11.camel@localhost.localdomain> <87sisfcx57.fsf@yandex.ru> <1390448545.13181.12.camel@localhost.localdomain> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1390486358 10956 80.91.229.3 (23 Jan 2014 14:12:38 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 23 Jan 2014 14:12:38 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 23 15:12:45 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W6L1P-0004FZ-I5 for geh-help-gnu-emacs@m.gmane.org; Thu, 23 Jan 2014 15:12:43 +0100 Original-Received: from localhost ([::1]:41367 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6L1P-00007X-3v for geh-help-gnu-emacs@m.gmane.org; Thu, 23 Jan 2014 09:12:43 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45604) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6L0M-0008AY-Ic for help-gnu-emacs@gnu.org; Thu, 23 Jan 2014 09:11:45 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W6L0F-00085r-8Z for help-gnu-emacs@gnu.org; Thu, 23 Jan 2014 09:11:38 -0500 Original-Received: from plane.gmane.org ([80.91.229.3]:42877) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6L0F-00085m-1I for help-gnu-emacs@gnu.org; Thu, 23 Jan 2014 09:11:31 -0500 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1W6L0D-0003fF-RG for help-gnu-emacs@gnu.org; Thu, 23 Jan 2014 15:11:29 +0100 Original-Received: from 184.175.17.192 ([184.175.17.192]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 23 Jan 2014 15:11:29 +0100 Original-Received: from monnier by 184.175.17.192 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 23 Jan 2014 15:11:29 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 16 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 184.175.17.192 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) Cancel-Lock: sha1:gorlpVa2m1MvG2A83jBVra8nShE= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:95570 Archived-At: > On my conf-modes/cedet.el file I did these changes: > (add-to-list 'semantic-default-submodes 'global-semanticdb-minor-mode) > (add-to-list 'semantic-default-submodes 'global-semantic-highlight-func-mode) > (add-to-list 'semantic-default-submodes 'global-semantic-idle-scheduler-mode) > (add-to-list 'semantic-default-submodes 'global-semantic-idle-completions-mode) > (add-to-list 'semantic-default-submodes 'global-semantic-idle-summary-mode) > (when (cedet-cscope-version-check t) > (semanticdb-enable-cscope-databases)) You use cedet-cscope-version-check without loading cedet, hence the error: the function is not yet defined. Stefan