aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Heuer1995-04-04 03:00:59 +0000
committerKarl Heuer1995-04-04 03:00:59 +0000
commit3ca7b46f5346984efb9e753f180b5f907452fd1f (patch)
tree143a9f1b0b29d6aac2576d30ca96d6e39a591b17
parent19126e1177b52706720fb6ec53c7d02edd7f7f10 (diff)
downloademacs-3ca7b46f5346984efb9e753f180b5f907452fd1f.tar.gz
emacs-3ca7b46f5346984efb9e753f180b5f907452fd1f.zip
Fix comments.
-rw-r--r--lisp/progmodes/ada-mode.el19
1 files changed, 9 insertions, 10 deletions
diff --git a/lisp/progmodes/ada-mode.el b/lisp/progmodes/ada-mode.el
index a421469f605..699f2f2f7fd 100644
--- a/lisp/progmodes/ada-mode.el
+++ b/lisp/progmodes/ada-mode.el
@@ -27,8 +27,7 @@
27 27
28;;; USAGE 28;;; USAGE
29;;; ===== 29;;; =====
30;;; If you have modified your startup file as described above, emacs 30;;; Emacs should enter ada-mode when you load an ada source (*.ada).
31;;; should enter ada-mode when you load an ada source into emacs.
32;;; 31;;;
33;;; When you have entered ada-mode, you may get more info by pressing 32;;; When you have entered ada-mode, you may get more info by pressing
34;;; C-h m. You may also get online help describing various functions by: 33;;; C-h m. You may also get online help describing various functions by:
@@ -37,9 +36,9 @@
37 36
38;;; HISTORY 37;;; HISTORY
39;;; ======= 38;;; =======
40;;; The first Ada mode for GNU Emacs was written by V. Bowman in 39;;; The first Ada mode for GNU Emacs was written by V. Broman in
41;;; 1985. He based his work on the already existing Modula-2 mode. The 40;;; 1985. He based his work on the already existing Modula-2 mode.
42;;; file is called ada.el and is currently distributed with Emacs. 41;;; This was distributed as ada.el in versions of Emacs prior to 19.29.
43;;; 42;;;
44;;; Lynn Slater wrote an extensive Ada mode in 1989. It consisted of 43;;; Lynn Slater wrote an extensive Ada mode in 1989. It consisted of
45;;; several files with support for dired commands and other nice 44;;; several files with support for dired commands and other nice
@@ -86,14 +85,14 @@
86;;;> to type it in? 85;;;> to type it in?
87;;;> 86;;;>
88 87
89;;;As alwyas, different users have different tastes. 88;;;As always, different users have different tastes.
90;;;It would be nice if one could configure such layout details separately 89;;;It would be nice if one could configure such layout details separately
91;;;without patching the LISP code. Maybe the metalanguage used in ada-stmt.el 90;;;without patching the LISP code. Maybe the metalanguage used in ada-stmt.el
92;;;could be taken even further, providing the user with some nice syntax 91;;;could be taken even further, providing the user with some nice syntax
93;;;for describing layout. Then my own hacks would survive the next 92;;;for describing layout. Then my own hacks would survive the next
94;;;update of the package :-) 93;;;update of the package :-)
95 94
96;;;By the way, there are som more quirks: 95;;;By the way, there are some more quirks:
97 96
98;;;1) text entered in prompt mode (*) is not converted to upper case (I have 97;;;1) text entered in prompt mode (*) is not converted to upper case (I have
99;;; choosen upper case for indentifiers). 98;;; choosen upper case for indentifiers).
@@ -109,11 +108,11 @@
109;;; LCD Archive Entry: 108;;; LCD Archive Entry:
110;;; ada-mode|Rolf Ebert|<ebert@inf.enst.fr> 109;;; ada-mode|Rolf Ebert|<ebert@inf.enst.fr>
111;;; |Major-mode for Ada 110;;; |Major-mode for Ada
112;;; |$Date: 1995/02/09 00:17:31 $|$Revision: 1.2 $| 111;;; |$Date: 1995/03/02 11:07:44 $|$Revision: 1.3 $|
113 112
114 113
115(defconst ada-mode-version (substring "$Revision: 1.2 $" 11 -2) 114(defconst ada-mode-version (substring "$Revision: 1.3 $" 11 -2)
116 "$Id: ada-mode.el,v 1.2 1995/02/09 00:17:31 rms Exp simon $ 115 "$Id: ada-mode.el,v 1.3 1995/03/02 11:07:44 simon Exp kwzh $
117 116
118Report bugs to: Rolf Ebert <ebert@inf.enst.fr>") 117Report bugs to: Rolf Ebert <ebert@inf.enst.fr>")
119 118