emacs-devel
[Top][All Lists]
Advanced

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

Re: syntax table in minibuffer


From: Stefan Monnier
Subject: Re: syntax table in minibuffer
Date: Tue, 13 Sep 2011 09:48:09 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux)

> Thank you. I've implemented base on your hit. 
> New behaviors of \M-\C-f and \M-\C-b in \C-x\C-f are nice.
> I'd like you to include this into the offcial Emacs source tree.

I'm not sure we want that by default.

> We are in feature-freeze stage. What shoud I do?
> Should I submit this to bug tracking system?

Please do so, yes.

> +(defvar minibuffer-local-filename-syntax 
> +  (let ((table (make-syntax-table)))
> +    (mapc
> +     (lambda (c)
> +       (modify-syntax-entry c "_" table))
> +     '(?~ ?` ?! ?@ ?# ?$ ?% ?^ ?& ?* ?( ?) ?- ?_ ?= ?+ 
> +       ?{ ?} ?[ ?] ?| ?\; ?\" ?'
> +       ?, ?< ?. ?> ??))

Why this particular list?  Please represent the list of chars in a way
that makes it more clear why it's chosen that way.


        Stefan



reply via email to

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