?
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
---
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
>>> "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
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) "\\|
>>> "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
>>> "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:
>
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