From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: "James K. Lowden" Newsgroups: gmane.emacs.help Subject: Re: python mode bugs Date: Tue, 1 May 2018 14:16:42 -0400 Organization: http://www.NewsDemon.com Message-ID: <20180501141642.70e5f3667326c2e1536fc8d8@speakeasy.net> References: <20180405155015.6d92e8a38c4d14ae58ecc67d@speakeasy.net> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1525198707 15769 195.159.176.226 (1 May 2018 18:18:27 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Tue, 1 May 2018 18:18:27 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue May 01 20:18:23 2018 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fDZr3-0003yi-MF for geh-help-gnu-emacs@m.gmane.org; Tue, 01 May 2018 20:18:21 +0200 Original-Received: from localhost ([::1]:45590 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fDZtA-0004s5-Dw for geh-help-gnu-emacs@m.gmane.org; Tue, 01 May 2018 14:20:32 -0400 Original-Path: usenet.stanford.edu!goblin2!goblin1!goblin.stu.neva.ru!npeer.de.kpn-eurorings.net!npeer-ng0.de.kpn-eurorings.net!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.am4!peer.am4.highwinds-media.com!peer02.iad!feed-me.highwinds-media.com!news.highwinds-media.com!post02.iad!fx39.iad.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help X-Newsreader: Sylpheed 3.4.3 (GTK+ 2.24.28; x86_64--netbsd) Original-Lines: 29 Original-X-Complaints-To: abuse@newsdemon.com Original-NNTP-Posting-Date: Tue, 01 May 2018 18:16:43 UTC X-Received-Bytes: 1873 X-Received-Body-CRC: 2803793718 Original-Xref: usenet.stanford.edu gnu.emacs.help:222521 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.help:116640 Archived-At: On Thu, 5 Apr 2018 15:50:15 -0400 "James K. Lowden" wrote: > 1. GNU bug report logs - #29717[1]: imenu does not recognize function > definitions with annotations. Just to remind the casual reader, this is a non-issue. imenu works just fine by iteself: with "emacs -Q", it annotations do not interefere with recognizing Python function defintions. The source of conflict in my .emacs file is apparently one important line: (semantic-mode 1) If semantic is never enabled, imenu works as advertised. After semantic is enabled, imenu stops working (c-C c-J fails to jump to most functions). Turning semantic-mode off after it's been enabled makes no difference: it's broken, and you get to keep both pieces. Now that I know about it, it's not a giant problem. I can have two emacs sessions, one for Python without semantic, and the other with semantic and not for Python. However, if someone wants to look into it further, I'm happy to provide such information as I can to help narrow down the conflict, if that's what it is. --jkl