diff options
| author | Karl Heuer | 1996-01-04 23:45:36 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-04 23:45:36 +0000 |
| commit | f951869d02739d683bff5d03787c49de4e86747d (patch) | |
| tree | cb2c56e574f11d5cc921d4bc5cfcfc3066fcf206 | |
| parent | bd0343fe35babe0f9be3b55b1a4256a4cb711425 (diff) | |
| download | emacs-f951869d02739d683bff5d03787c49de4e86747d.tar.gz emacs-f951869d02739d683bff5d03787c49de4e86747d.zip | |
(m2-case, m2-for, m2-if): Doc fix.
| -rw-r--r-- | lisp/progmodes/modula2.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el index c80fbab844b..12c6befae9d 100644 --- a/lisp/progmodes/modula2.el +++ b/lisp/progmodes/modula2.el | |||
| @@ -166,7 +166,7 @@ followed by the first character of the construct. | |||
| 166 | (m2-tab)) | 166 | (m2-tab)) |
| 167 | 167 | ||
| 168 | (defun m2-case () | 168 | (defun m2-case () |
| 169 | "Build skeleton CASE statment, prompting for the <expression>." | 169 | "Build skeleton CASE statement, prompting for the <expression>." |
| 170 | (interactive) | 170 | (interactive) |
| 171 | (let ((name (read-string "Case-Expression: "))) | 171 | (let ((name (read-string "Case-Expression: "))) |
| 172 | (insert "CASE " name " OF") | 172 | (insert "CASE " name " OF") |
| @@ -194,7 +194,7 @@ followed by the first character of the construct. | |||
| 194 | (m2-tab)) | 194 | (m2-tab)) |
| 195 | 195 | ||
| 196 | (defun m2-for () | 196 | (defun m2-for () |
| 197 | "Build skeleton FOR loop statment, prompting for the loop parameters." | 197 | "Build skeleton FOR loop statement, prompting for the loop parameters." |
| 198 | (interactive) | 198 | (interactive) |
| 199 | (insert "FOR ") | 199 | (insert "FOR ") |
| 200 | (let ((name (read-string "Loop Initialiser: ")) limit by) | 200 | (let ((name (read-string "Loop Initialiser: ")) limit by) |
| @@ -224,7 +224,7 @@ followed by the first character of the construct. | |||
| 224 | (insert "*)\n\n")) | 224 | (insert "*)\n\n")) |
| 225 | 225 | ||
| 226 | (defun m2-if () | 226 | (defun m2-if () |
| 227 | "Insert skeleton IF statment, prompting for <boolean-expression>." | 227 | "Insert skeleton IF statement, prompting for <boolean-expression>." |
| 228 | (interactive) | 228 | (interactive) |
| 229 | (insert "IF ") | 229 | (insert "IF ") |
| 230 | (let ((thecondition (read-string "<boolean-expression>: "))) | 230 | (let ((thecondition (read-string "<boolean-expression>: "))) |