From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Dmitry Gutov Newsgroups: gmane.emacs.devel Subject: Re: trunk r116285: * lisp/emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start Date: Thu, 06 Feb 2014 15:41:48 +0200 Message-ID: <87zjm4tl2b.fsf@yandex.ru> References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1391694126 18582 80.91.229.3 (6 Feb 2014 13:42:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 6 Feb 2014 13:42:06 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stefan Monnier Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Feb 06 14:42:12 2014 Return-path: Envelope-to: ged-emacs-devel@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 1WBPDW-0000Wf-Ku for ged-emacs-devel@m.gmane.org; Thu, 06 Feb 2014 14:42:10 +0100 Original-Received: from localhost ([::1]:36421 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBPDW-0006Kl-5G for ged-emacs-devel@m.gmane.org; Thu, 06 Feb 2014 08:42:10 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50149) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBPDP-0006Kf-Dy for emacs-devel@gnu.org; Thu, 06 Feb 2014 08:42:08 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WBPDJ-0004tw-Q0 for emacs-devel@gnu.org; Thu, 06 Feb 2014 08:42:03 -0500 Original-Received: from mail-ea0-x232.google.com ([2a00:1450:4013:c01::232]:50317) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WBPDJ-0004tq-JD for emacs-devel@gnu.org; Thu, 06 Feb 2014 08:41:57 -0500 Original-Received: by mail-ea0-f178.google.com with SMTP id a15so901754eae.37 for ; Thu, 06 Feb 2014 05:41:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=tcZRW5B5HF70QKZqdRTbe/1sSgHnDqJPqSDyS66xquE=; b=jijVvbugAauYEQ4rDVblr8nhKAlGkdPefxv+siapx6I+NBvnmTo3NV9jzk2lQtEzXi wlyj2pj7xX88eH/tg4CWr+mMmn7ekcdqwF0i3qRaWm2J4yoGPKq69Mb+lMBq3OgOJMxt fv8o6rTRmf6shCDxdAfuvScUGl79Vv15vCG3lAH3DfNWoIRPQKuwPGRFe3AhGeMIrMHD DARoC1Z1lfSG0SPy0XKkIMsxGkS4rumbfEy52wDfeccThdhRqVelh/sik9rXaw5ZGtb6 n6pGyj/UQHSUCs/1zr1vTGQQuebvUg26DUXQYcsCIPWvs/15UFNrgnJucj1W3JAUifOV bu5A== X-Received: by 10.14.175.2 with SMTP id y2mr8673448eel.75.1391694116305; Thu, 06 Feb 2014 05:41:56 -0800 (PST) Original-Received: from axl (62-36-157.netrun.cytanet.com.cy. [62.228.36.157]) by mx.google.com with ESMTPSA id m1sm3784743een.7.2014.02.06.05.41.54 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 06 Feb 2014 05:41:55 -0800 (PST) In-Reply-To: (Stefan Monnier's message of "Thu, 06 Feb 2014 05:37:28 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4013:c01::232 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:169435 Archived-At: Stefan Monnier writes: > + ;; Don't include all symbols > + ;; (bug#16646). > + (lambda (sym) > + (or (boundp sym) > + (fboundp sym) > + (symbol-plist sym))) > + 'strict)) Shouldn't we also filter out functions (and maybe the symbols of the third kind), depending on whether there's a quote before BEG?