]> code.delx.au - gnu-emacs/commitdiff
Doc-string fixes.
authorGerd Moellmann <gerd@gnu.org>
Tue, 12 Oct 1999 22:19:26 +0000 (22:19 +0000)
committerGerd Moellmann <gerd@gnu.org>
Tue, 12 Oct 1999 22:19:26 +0000 (22:19 +0000)
lisp/ChangeLog
lisp/progmodes/ada-stmt.el

index 185966b6efd619774785155025566a2ff753f561..a0cc9ac8e6093e4e0902d5085f2d96e28543dfea 100644 (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.
index 2823ca08e3bd0a9b866326692c799e1c342f3caf..9f822ddfb9f46bfca5faca83cac833727ace5514 100644 (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>
 ;;; ---- 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