emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: trunk r116285: * lisp/emacs-lisp/lisp.el (lisp-completion-at-point):


From: Dmitry Gutov
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
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux)

Stefan Monnier <address@hidden> 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?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]