comparison lisp/progmodes/ada-stmt.el @ 26226:b63d041c9108

Changed format of years in copyright notices.
author Gerd Moellmann <gerd@gnu.org>
date Thu, 28 Oct 1999 11:03:31 +0000
parents c9e91fc553e6
children a530830f8a3d
comparison
equal deleted inserted replaced
26225:91cb7b3bae3c 26226:b63d041c9108
1 ;;; ada-stmt.el - An extension to Ada mode for inserting statement templates. 1 ;;; ada-stmt.el - An extension to Ada mode for inserting statement templates.
2 2
3 ;; Copyright (C) 1987, 1993, 1994, 1996, 1997 Free Software Foundation, Inc. 3 ;; Copyright(C) 1987, 1993-1994, 1996-1998, 1999 Free Software Foundation, Inc.
4 4
5 ;; Ada Core Technologies's version: $Revision: 1.1 $ 5 ;; Ada Core Technologies's version: $Revision: 1.10 $
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>
9 ;; Keywords: languages, ada 9 ;; Keywords: languages, ada
10 ;; Rolf Ebert's version: 2.26 10 ;; Rolf Ebert's version: 2.26
36 ;; 36 ;;
37 ;; 1994/12/02 Christian Egli <cegli@hcsd.hac.com> 37 ;; 1994/12/02 Christian Egli <cegli@hcsd.hac.com>
38 ;; General cleanup and bug fixes. 38 ;; General cleanup and bug fixes.
39 ;; 39 ;;
40 ;; 1995/12/20 John Hutchison <hutchiso@epi.syr.ge.com> 40 ;; 1995/12/20 John Hutchison <hutchiso@epi.syr.ge.com>
41 ;; made it work with skeleton.el from emacs-19.30. Several 41 ;; made it work with skeleton.el from Emacs-19.30. Several
42 ;; enhancements and bug fixes. 42 ;; enhancements and bug fixes.
43 43
44 ;; BUGS: 44 ;; BUGS:
45 ;;;> I have the following suggestions for the function template: 1) I 45 ;;;> I have the following suggestions for the function template: 1) I
46 ;;;> don't want it automatically assigning it a name for the return variable. I 46 ;;;> don't want it automatically assigning it a name for the return variable. I
161 161
162 ;;; ---- statement skeletons ------------------------------------------ 162 ;;; ---- statement skeletons ------------------------------------------
163 163
164 (define-skeleton ada-array 164 (define-skeleton ada-array
165 "Insert array type definition. 165 "Insert array type definition.
166 Uses the minibuffer to prompt for component type and index subtypes." 166 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