diff options
author | Eli Zaretskii <eliz@gnu.org> | 2002-01-04 13:10:23 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2002-01-04 13:10:23 +0000 |
commit | 62993ed664a12445b789ecbf9c5647f16d07ba98 (patch) | |
tree | e5e6a4c53e88b4731433f53f680e750fbcdd7ceb /lisp/textmodes | |
parent | 0d48e8aad38c02e7e157c89f505869a1539114ad (diff) | |
download | emacs-62993ed664a12445b789ecbf9c5647f16d07ba98.tar.gz |
(texinfo-insert-@end): Fix the change from 2001-10-24.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/texinfo.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index ffabcefe366..6d963afe5b1 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -717,8 +717,8 @@ With prefix argument or inside @code or @example, inserts a plain \"." (save-excursion (texinfo-last-unended-begin) (match-string 1))))) - (insert "@end " - (if string (insert string "\n"))))) + (insert "@end ") + (if string (insert string "\n")))) ;; The following insert commands accept a prefix arg N, which is the ;; number of words (actually s-exprs) that should be surrounded by |