1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-07 20:54:32 +00:00

(m2-for): Fix spellings.

This commit is contained in:
Juanma Barranquero 2005-06-16 16:24:28 +00:00
parent 98d9090497
commit 2f3806694c

View File

@ -309,7 +309,7 @@ followed by the first character of the construct.
"Build skeleton FOR loop statement, prompting for the loop parameters."
(interactive)
(insert "FOR ")
(let ((name (read-string "Loop Initialiser: ")) limit by)
(let ((name (read-string "Loop Initializer: ")) limit by)
(insert name " TO ")
(setq limit (read-string "Limit: "))
(insert limit)