From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!news.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!feeder.erje.net!eu.feeder.erje.net!news2.arglkargh.de!news.glorb.com!peer02.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!post02.iad.highwinds-media.com!news.flashnewsgroups.com-b7.4zTQh5tI3A!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Emacs Ada mode 5.0.1 available in Gnu ELPA References: <85wqha2a79.fsf@stephe-leake.org> <1392326670.4276.180.camel@pascal.home.net> Date: Fri, 14 Feb 2014 08:10:42 -0600 Message-ID: <85r475wzrx.fsf@stephe-leake.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (windows-nt) Cancel-Lock: sha1:2nsDnDMzawAulEYhURHZNh2vASk= MIME-Version: 1.0 Content-Type: text/plain X-Complaints-To: abuse@flashnewsgroups.com Organization: FlashNewsgroups.com X-Trace: b786b52fe23e8eef2f4a321792 X-Received-Bytes: 1540 X-Received-Body-CRC: 436292702 Xref: news.eternal-september.org comp.lang.ada:18559 Date: 2014-02-14T08:10:42-06:00 List-Id: Pascal Obry writes: > I found one annoying issue, it is not possible to define case exception. > Emacs keep complaining that I have not defined the > ada-case-exception-file even though I have set it in the customize > module. Any idea? I can reproduce that. One work-around is to use an Emacs Ada mode project file, and set the case exception file there. Apparently that's the only use case I tested. Will be fixed in 5.0.2 Or, if you are up to patching elisp: in ~/.emacs.d/elpa/ada-mode-5.0.1/ada-mode.el, change the start of ada-case-create-exception to be: (interactive) (let ((casing (or (ada-prj-get 'casing) (if (listp ada-case-exception-file) ada-case-exception-file (list ada-case-exception-file))))) Then do M-x byte-compile-file ada-mode.el -- -- Stephe