Doc-string fixes.

This commit is contained in:
Gerd Moellmann 1999-10-12 22:19:26 +00:00
parent 7518ed7ba7
commit 1a7244d9c5
2 changed files with 9 additions and 5 deletions

View file

@ -1,3 +1,7 @@
1999-10-12 Emmanuel Briot <briot@gnat.com>
* ada-stmt.el: Doc-string fixes.
1999-10-12 Gerd Moellmann <gerd@gnu.org>
* recentf.el: New file.

View file

@ -2,7 +2,7 @@
;; Copyright (C) 1987, 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
;; Ada Core Technologies's version: $Revision: 1.10 $
;; Ada Core Technologies's version: $Revision: 1.1 $
;; Authors: Daniel Pfeiffer, Markus Heritsch, Rolf Ebert <ebert@waporo.muc.de>
;; Maintainer: Rolf Ebert <ebert@waporo.muc.de>
@ -162,15 +162,15 @@
;;; ---- statement skeletons ------------------------------------------
(define-skeleton ada-array
"Insert array type definition. Uses the minibuffer to prompt
for component type and index subtypes."
"Insert array type definition.
Uses the minibuffer to prompt for component type and index subtypes."
()
"array (" ("index definition: " str ", " ) -2 ") of " _ ?\;)
(define-skeleton ada-case
"Build skeleton case statement, prompting for the selector expression.
Also builds the first when clause."
"Build skeleton case statement.
Prompt for the selector expression. Also builds the first when clause."
"[selector expression]: "
"case " str " is" \n
> "when " ("discrete choice: " str " | ") -3 " =>" \n