aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/ada-stmt.el10
2 files changed, 9 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 185966b6efd..a0cc9ac8e60 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
11999-10-12 Emmanuel Briot <briot@gnat.com>
2
3 * ada-stmt.el: Doc-string fixes.
4
11999-10-12 Gerd Moellmann <gerd@gnu.org> 51999-10-12 Gerd Moellmann <gerd@gnu.org>
2 6
3 * recentf.el: New file. 7 * recentf.el: New file.
diff --git a/lisp/progmodes/ada-stmt.el b/lisp/progmodes/ada-stmt.el
index 2823ca08e3b..9f822ddfb9f 100644
--- a/lisp/progmodes/ada-stmt.el
+++ b/lisp/progmodes/ada-stmt.el
@@ -2,7 +2,7 @@
2 2
3;; Copyright (C) 1987, 1993, 1994, 1996, 1997 Free Software Foundation, Inc. 3;; Copyright (C) 1987, 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
4 4
5;; Ada Core Technologies's version: $Revision: 1.10 $ 5;; Ada Core Technologies's version: $Revision: 1.1 $
6 6
7;; Authors: Daniel Pfeiffer, Markus Heritsch, Rolf Ebert <ebert@waporo.muc.de> 7;; Authors: Daniel Pfeiffer, Markus Heritsch, Rolf Ebert <ebert@waporo.muc.de>
8;; Maintainer: Rolf Ebert <ebert@waporo.muc.de> 8;; Maintainer: Rolf Ebert <ebert@waporo.muc.de>
@@ -162,15 +162,15 @@
162;;; ---- statement skeletons ------------------------------------------ 162;;; ---- statement skeletons ------------------------------------------
163 163
164(define-skeleton ada-array 164(define-skeleton ada-array
165 "Insert array type definition. Uses the minibuffer to prompt 165 "Insert array type definition.
166for component type and index subtypes." 166Uses the minibuffer to prompt for component type and index subtypes."
167 () 167 ()
168 "array (" ("index definition: " str ", " ) -2 ") of " _ ?\;) 168 "array (" ("index definition: " str ", " ) -2 ") of " _ ?\;)
169 169
170 170
171(define-skeleton ada-case 171(define-skeleton ada-case
172 "Build skeleton case statement, prompting for the selector expression. 172 "Build skeleton case statement.
173Also builds the first when clause." 173Prompt for the selector expression. Also builds the first when clause."
174 "[selector expression]: " 174 "[selector expression]: "
175 "case " str " is" \n 175 "case " str " is" \n
176 > "when " ("discrete choice: " str " | ") -3 " =>" \n 176 > "when " ("discrete choice: " str " | ") -3 " =>" \n