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=0.6 required=5.0 tests=BAYES_40,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,c984a7f4a0ab0148 X-Google-Attributes: gid103376,public From: dbrown@ted.vigra.com (David L Brown) Subject: Re: non key-words in xemacs to be upper case Date: 1996/08/16 Message-ID: #1/1 X-Deja-AN: 174571758 distribution: world references: organization: VisiCom Laboratories, Inc. newsgroups: comp.lang.ada Date: 1996-08-16T00:00:00+00:00 List-Id: >>>>> On 16 Aug 1996 10:22:24 GMT, bade@vicos_2.news (Frank.Bade) said: > I am an ADA programmer and using xemacs 19.13. The ADA-Mode of the > Xemacs formats the non key-words to the first character upper case > and the rest lower case. Our S/W development bible tolds us to write > those words completely upper case. Who can help me ? I assume this is the same in the ada-mode with xemacs as with emacs. There are a series of variables in ada-mode that define the casing of that emacs uses. I believe you want the following in your .emacs: (setq ada-case-identifier 'upcase-word) if you want attributes upcased too, you can do: (setq ada-case-attribute 'upcase-word) Dave Brown dbrown@vigra.com