From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-15?Q?Andreas_R=F6hler?= Newsgroups: gmane.emacs.help Subject: Wrong "Not documented" message, bug? Date: Thu, 14 Oct 2010 10:21:59 +0200 Message-ID: <4CB6BDA7.7040204@easy-emacs.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1287045556 5224 80.91.229.12 (14 Oct 2010 08:39:16 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 14 Oct 2010 08:39:16 +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 Oct 14 10:39:14 2010 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P6JLG-0005W7-2y for geh-help-gnu-emacs@m.gmane.org; Thu, 14 Oct 2010 10:39:14 +0200 Original-Received: from localhost ([127.0.0.1]:60937 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P6JLF-00041h-H4 for geh-help-gnu-emacs@m.gmane.org; Thu, 14 Oct 2010 04:39:13 -0400 Original-Received: from [140.186.70.92] (port=58602 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P6JHX-000288-R2 for help-gnu-emacs@gnu.org; Thu, 14 Oct 2010 04:35:25 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P6J5J-0007AW-18 for help-gnu-emacs@gnu.org; Thu, 14 Oct 2010 04:22:45 -0400 Original-Received: from moutng.kundenserver.de ([212.227.126.186]:64200) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P6J5I-0007A2-ME for help-gnu-emacs@gnu.org; Thu, 14 Oct 2010 04:22:44 -0400 Original-Received: from noname.home (brln-4db9e01d.pool.mediaWays.net [77.185.224.29]) by mrelayeu.kundenserver.de (node=mreu2) with ESMTP (Nemesis) id 0Lr6Jj-1OSHQn0KgN-00eKEY; Thu, 14 Oct 2010 10:22:42 +0200 User-Agent: Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.1.11) Gecko/20100711 Thunderbird/3.0.6 X-Provags-ID: V02:K0:uXMovvyMgvitU4mIAgizwmelyCIJBuECTj8TJHOF11k N2EDdwActhAhVSNUKbz6JrEHyiv23Y28haqaV9izPygVqFBcdV XTdDF64adUJNXXnZ1fmI93fOgwvlIbcLqGFCfz33anRlRoN3Dq kZvWBNTuLWrNqtYZffoqk0RkLvzyHMMm0mP1nfoG6bs1joRdcv OLbBJIAqdQMeI1MPAoK6ZfCuLgPS3fDT4ctRN6VEUU= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:75116 Archived-At: Hi, M-x describe-function `py-in-string/comment' points me to the code below, which is correct: (defun py-in-string/comment () (interactive) "Returns character address of start of comment or string; nil if not in one. " (lexical-let ((erg (nth 8 (syntax-ppss)))) (unless erg (when (or (looking-at "\"\"\"") (looking-at (concat "^[ \t]*" comment-start-skip))) (setq erg (point)))) (when (interactive-p) (message "%s" erg)) erg)) However, it says: ,---- | py-in-string/comment is an interactive Lisp function in | `python-components-intern.el'. | | (py-in-string/comment) | | Not documented. `---- Something odd with doku here? A bug? Thanks Andreas -- https://code.launchpad.net/~a-roehler/python-mode/python-mode-components https://code.launchpad.net/s-x-emacs-werkstatt/ PS: If interested, see the complete files contents at http://bazaar.launchpad.net/~a-roehler/python-mode/python-mode-components/annotate/head%3A/python-components-intern.el