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

Incorrect symbol name used: dime-destructuring-case #49

Closed pedro-w closed 3 years ago

pedro-w commented 3 years ago

In the recent commit 127bead9241060bbfb0a0e5dac6e7cfe32708919, destructure-case was renamed to dime--destructuring-case everywhere except for its definition where it was called dime-destructuring-case. The definition should be changed to match the uses (that symbol should not be accessed externally, so the double-dash is correct) definition: https://github.com/dylan-lang/dylan-mode/blob/127bead9241060bbfb0a0e5dac6e7cfe32708919/dime.el#L614 example of use: https://github.com/dylan-lang/dylan-mode/blob/127bead9241060bbfb0a0e5dac6e7cfe32708919/dime.el#L1991