]> code.delx.au - gnu-emacs-elpa/blob - packages/ada-mode/NEWS
Add *.info and dir to debbugs
[gnu-emacs-elpa] / packages / ada-mode / NEWS
1 GNU Emacs Ada mode NEWS -- history of user-visible changes.
2
3 Copyright (C) 2014 Free Software Foundation, Inc.
4 See the end of the file for license conditions.
5
6 Please send Emacs Ada mode bug reports to bug-gnu-emacs@gnu.org, with
7 'ada-mode' in the subject. If possible, use M-x report-emacs-bug.
8
9 \f
10 * Ada mode 5.1.7
11 18 Nov 2014
12
13 ** add ada-find-file that prompts for a file from the current project,
14 with completion.
15
16 ** fix bug that prevented
17 Y : Boolean := Boolean'(if True then False);
18
19 ** add ada-create-select-default-prj, to simplify working with small
20 projects
21
22 ** Handle deleting whitespace between words, inserting whitespace in
23 the middle of a word properly.
24
25 ** Change ada-case-adjust to capitalize words in comments and strings
26 by default; C-u adjusts case as if code.
27
28 ** allow 'raise' in expressions for GNAT GPL 2014 aspects
29
30 ** move all except keyword face highighting to grammar; much more
31 accurate, easier to maintain, simpler, faster.
32
33 ** delete gnatinspect support; gpr_query is better
34
35 ** misc bug fixes
36
37 * Ada mode 5.1.6
38 28 Sep 2014
39
40 ** improve syntax highlighting of names after 'of', 'new', 'renames'
41
42 ** fix ada-format-paramlist to handle 'aliased' keyword (new in Ada
43 2012), and 'not null' without 'access'.
44
45 ** fix ada-find-other-file in separate bodies; now navigates to the
46 spec.
47
48 ** restore ada-indent-newline-indent for [return]
49
50 * Ada mode 5.1.5
51 12 Jul 2014
52
53 ** add C-c <, C-c >; goto-declaration-start, -end
54
55 ** improve parsing speed significantly
56
57 * Ada mode 5.1.4
58 26 May 2014
59
60 ** support expression functions
61
62 ** beginning-of-defun-function, end-of-defun-function are now set. A
63 "defun" is a generic, package, protected, subprogram, or task spec
64 or body.
65
66 ** C-c C-s is now bound to ada-goto-previous-pos, which goes to the
67 first position in ada-goto-pos-ring. Most navigation functions set
68 ada-goto-pos-ring. This allows easy navigation back to the start of
69 a cross-reference chain.
70
71 ** xref tool error handlers no longer show the xref tool buffer; the
72 new Ada menu item 'show xref tool buffer' can be used instead.
73
74 ** The parser supports more deeply nested case statements.
75
76 * Ada mode 5.1.3
77 19 Apr 2014
78
79 ** more GNAT error message auto-fixes
80
81 ** support aspects on subprogram declarations; format same as SPARK examples.
82
83 ** fix bug in ada-syntax-propertize that caused query-replace to screw up
84
85 ** inhibit reparse due to case adjust; case adjust entire buffer is
86 now _much_ faster.
87
88 ** Non-ASCII characters supported in Ada mode buffers, including GNAT
89 bracket notation.
90
91 * Ada mode 5.1.2
92 16 Mar 2014
93
94 ** fix another packaging bug; forgot to add files to ELPA git!
95
96 * Ada mode 5.1.1
97 14 Mar 2014
98
99 ** require wisi-1.0.2, to fix packaging bug
100
101 ** gnat-find now called with -a to include read-only .ali files in the results.
102
103 * Ada mode 5.1.0
104 13 Mar 2014
105
106 ** Emacs 24.2 supported, via cl-lib in Gnu ELPA
107
108 ** Better handling of aspects.
109
110 ** 'record' is aligned with 'type' in derived types
111
112 ** Several minor indentation bugs have been fixed.
113
114 ** Added "2.2 Upgrading from previous versions" to the user guide.
115
116 ** ada-align now properly handles subprograms with the opening paren
117 on the same line as the preceding code and code on the same line as
118 the closing paren:
119
120 function Foo (Param_1 : Integer;
121 Param_2 : Integer) return Integer;
122
123 ** When no project file is selected, the default variables are
124 consistently used instead. Previously, the default variables were
125 only used when parsing a project file.
126
127 ** info files are properly visible in main info menu
128
129 ** 'C-c ;' used to run `comment-dim', which is bound to 'M-;' in the
130 global keymap. 'C-c ;' now gives an error with a message saying
131 'use M-; instead'.
132
133 * Ada mode 5.0.1
134 Feb 2 2014
135
136 First public release, via ELPA
137
138 * Ada mode 5.0.0
139 Dec 24 2013
140
141 ** first release in ELPA
142
143 ** Previous version was 4.00, in Emacs core. 5.0.1 is a complete
144 rewrite, using a generalized LALR parser that caches syntactic
145 information in text properties.