dylan-lang / dylan-emacs-support

Emacs mode for indenting and highlighting Dylan code
GNU General Public License v2.0
27 stars 8 forks source link

identifier highlighting is broken #9

Closed hannesm closed 11 years ago

hannesm commented 11 years ago

in the expression let foo-bar = 24; foo gets highlighted, but -bar doesn't. It works fine if you write let foo-bar :: <integer> = 24. A similar issue appears in slots:

define class <foo> (<object>)
  slot foo-bar
end;

vs

define class <foo> (<object>)
  slot foo-bar :: <integer>
end;