Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 1017 Bytes

TODO.org

File metadata and controls

25 lines (21 loc) · 1017 Bytes

Check whether a dot character is a cons or a number

Actually we don’t need to check because when dot is a inside a number, Semantic can recognize it. When it’s a cons operator, Semantic treats such dot character a symbol.

[#A] Handle character syntax in Emacs, otherwise it becomes a mess

Samples:

(modify-syntax-entry ?\>"" st)          ; character not insert spacen next to string
(modify-syntax-entry ? \> (if vhdl-underscore-is-part-of-word "w" "_")
                         st)            ; erroneous space between ? and \>

[#B] Allow uers to add customizability and extensibility for arbitrary form

[#A] Fix getter/setter generation of a list of variables

Currently, Semantic can’t regonize a list of variables with the same type properly. For example:

int x, y;

semantic-current-tag only returns tag y.

I need to write a function to break such list into proper variable tags.