mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 18:40:39 -08:00
(m2-case, m2-for, m2-if): Doc fix.
This commit is contained in:
parent
bd0343fe35
commit
f951869d02
1 changed files with 3 additions and 3 deletions
|
|
@ -166,7 +166,7 @@ followed by the first character of the construct.
|
||||||
(m2-tab))
|
(m2-tab))
|
||||||
|
|
||||||
(defun m2-case ()
|
(defun m2-case ()
|
||||||
"Build skeleton CASE statment, prompting for the <expression>."
|
"Build skeleton CASE statement, prompting for the <expression>."
|
||||||
(interactive)
|
(interactive)
|
||||||
(let ((name (read-string "Case-Expression: ")))
|
(let ((name (read-string "Case-Expression: ")))
|
||||||
(insert "CASE " name " OF")
|
(insert "CASE " name " OF")
|
||||||
|
|
@ -194,7 +194,7 @@ followed by the first character of the construct.
|
||||||
(m2-tab))
|
(m2-tab))
|
||||||
|
|
||||||
(defun m2-for ()
|
(defun m2-for ()
|
||||||
"Build skeleton FOR loop statment, prompting for the loop parameters."
|
"Build skeleton FOR loop statement, prompting for the loop parameters."
|
||||||
(interactive)
|
(interactive)
|
||||||
(insert "FOR ")
|
(insert "FOR ")
|
||||||
(let ((name (read-string "Loop Initialiser: ")) limit by)
|
(let ((name (read-string "Loop Initialiser: ")) limit by)
|
||||||
|
|
@ -224,7 +224,7 @@ followed by the first character of the construct.
|
||||||
(insert "*)\n\n"))
|
(insert "*)\n\n"))
|
||||||
|
|
||||||
(defun m2-if ()
|
(defun m2-if ()
|
||||||
"Insert skeleton IF statment, prompting for <boolean-expression>."
|
"Insert skeleton IF statement, prompting for <boolean-expression>."
|
||||||
(interactive)
|
(interactive)
|
||||||
(insert "IF ")
|
(insert "IF ")
|
||||||
(let ((thecondition (read-string "<boolean-expression>: ")))
|
(let ((thecondition (read-string "<boolean-expression>: ")))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue