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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,d275ffeffdf83655 X-Google-Attributes: gid103376,public From: Simon Wright Subject: Re: Ada vs C++ vs Java Date: 1999/01/23 Message-ID: #1/1 X-Deja-AN: 436104646 X-NNTP-Posting-Host: pogner.demon.co.uk:158.152.70.98 References: <369C1F31.AE5AF7EF@concentric.net> <369DDDC3.FDE09999@sea.ericsson.se> <369e309a.32671759@news.demon.co.uk> <369F1D39.64A65BC1@sea.ericsson.se> <369f81a9.31040093@news.demon.co.uk> <77ommt$9bo$1@nnrp1.dejanews.com> <77vhjf$nn9$1@nnrp1.dejanews.com> <77vld9$qvg$1@nnrp1.dejanews.com> <782rp0$kn6$1@nnrp1.dejanews.com> <6Oap2.16170$MW1.4028@news2.giganews.com> <783nnb$s9c@drn.newsguy.com> <784qvi$a0a$1@nnrp1.dejanews.com> <78549k$iqv$1@nnrp1.dejanews.com> <785fo3$thj$1@nnrp1.dejanews.com> <36A6F997.CA210C39@easystreet.com> <36A775B3.666042D8@easystreet.com> <788svu$gl9@drn.newsguy.com> X-Complaints-To: abuse@demon.net X-Trace: news.demon.co.uk 917126304 nnrp-12:22286 NO-IDENT pogner.demon.co.uk:158.152.70.98 Organization: At Home Newsgroups: comp.lang.ada Date: 1999-01-23T00:00:00+00:00 List-Id: Matthew Heaney writes: > C-C C-r to format a record declaration, i.e. go from this: Well, round here that means adjust-case-region! > On my list of things to do is teach emacs (ada-mode) how to format a > record representation clause. I hope you're going to look at that align-regexp code someone posted last time this came up, makes rep clauses a doddle. I've only tried by hand so far .. > And of course, absolutely no tabs are inserted at any time in the file. > Tabs do nothing except reek havoc with formatting algorithms, and cause > very strange-looking print jobs. Thank goodness, er, I mean, RMS, for > untabify. Not sure if the 20.3 ada-mode does that -- isn't it optional behaviour? I've had a whole lot of CVS diffs recently absolutely stuffed with leading whitespace changes, what a bore! > I'm going to be taking over maintenance of ada-mode in another month or > so. If you have any suggestions for me, let me know. Great! (will you be liasing with ACT on this one? they are working in a similar direction ..) I'd like some customisability in the layout of created bodies; it does procedure Foo (params) is begin -- Foo null; end Foo; and I keep having to change it to read procedure Foo (params) is begin null; end Foo;