[Matlab-emacs-discuss] typo in tlc-mode

2016-09-02 Thread John Ciolfi
? In tlc.el, there's a missing space which results in an error: ;;;###autoload(add-to-list 'auto-mode-alist '("\\.tlc$" .tlc-mode)) a space is needed between the '.' and 'tlc', i.e. ;;;###autoload(add-to-list 'auto-mode-alist '("\\.tlc$" . tlc-mode)) Could someone fix? Thanks ---

[Matlab-emacs-discuss] compiler warnings

2016-09-02 Thread John Ciolfi
I just updated to the latest matlab emacs and see a few warnings. I realize some of these are to support older emacs's but some look like they could be fixed (and maybe suppress the others for older releases)? I'm building on Debian 8 using emacs 24.4.1 Thanks John In matlab-with-emacs-link

Re: [Matlab-emacs-discuss] typo in tlc-mode

2016-09-02 Thread Uwe Brauer
>>> "John" == John Ciolfi writes: > ? > In tlc.el, there's a missing space which results in an error: > ;;;###autoload(add-to-list 'auto-mode-alist '("\\.tlc$" .tlc-mode)) > a space is needed between the '.' and 'tlc', i.e. > ;;;###autoload(add-to-list 'auto-mode-alist '("\\.tlc

Re: [Matlab-emacs-discuss] compiler warnings

2016-09-02 Thread John Ciolfi
It would be good to fix the warnings that are real. For example, if you could you fix the lambda quoting that would help. On emacs 24, one of the lambda issues shows up when you load an m-file. In mlint.el add the #' as in: (mapconcat '(lambda (x) x) (cdddr entry) "\\|

Re: [Matlab-emacs-discuss] compiler warnings

2016-09-02 Thread Uwe Brauer
>>> "John" == John Ciolfi writes: > I just updated to the latest matlab emacs and see a few warnings. I > realize some of these are to support older emacs's but some look like > they could be fixed (and maybe suppress the others for older > releases)? I'm building on Debian 8 using em

Re: [Matlab-emacs-discuss] compiler warnings

2016-09-02 Thread Uwe Brauer
>>> "John" == John Ciolfi writes: > It would be good to fix the warnings that are real. For example, if > you could you fix the lambda quoting that would help. On emacs 24, > one of the lambda issues shows up when you load an m-file. In > mlint.el add the #' as in: >

Re: [Matlab-emacs-discuss] compiler warnings

2016-09-02 Thread Eric Ludlam
Hi Uwe, The overlay abstraction should avoid the warnings, but perhaps the defalias isn't working with the byte compiler correctly. I don't know why those warnings exist. It may be an eval-and-compile type trick is needed around that block. There were some other warnings in the list where I