diff options
| author | Gerd Moellmann | 1999-10-12 22:19:26 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-12 22:19:26 +0000 |
| commit | 1a7244d9c5d0dc6fddc90dff01ddc5fde08b26da (patch) | |
| tree | ab97edb9a887d160a61e445527ebcfdae66fa3e0 | |
| parent | 7518ed7ba7fa3935c099f6b03a081ccb7b585c5d (diff) | |
| download | emacs-1a7244d9c5d0dc6fddc90dff01ddc5fde08b26da.tar.gz emacs-1a7244d9c5d0dc6fddc90dff01ddc5fde08b26da.zip | |
Doc-string fixes.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/ada-stmt.el | 10 |
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 @@ | |||
| 1 | 1999-10-12 Emmanuel Briot <briot@gnat.com> | ||
| 2 | |||
| 3 | * ada-stmt.el: Doc-string fixes. | ||
| 4 | |||
| 1 | 1999-10-12 Gerd Moellmann <gerd@gnu.org> | 5 | 1999-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. |
| 166 | for component type and index subtypes." | 166 | Uses 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. |
| 173 | Also builds the first when clause." | 173 | Prompt 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 |