comparison lisp/textmodes/texinfmt.el @ 36300:e4408f5badaf

Fix a typo in a comment.
author Eli Zaretskii <eliz@gnu.org>
date Thu, 22 Feb 2001 18:13:41 +0000
parents 6619db0066d9
children 92c065fa43f6
comparison
equal deleted inserted replaced
36299:4f19e6a45a2d 36300:e4408f5badaf
866 (if (not (= (following-char) ?\n)) 866 (if (not (= (following-char) ?\n))
867 (insert ? ))) 867 (insert ? )))
868 ;; Otherwise: the other characters are simply quoted. Delete the @. 868 ;; Otherwise: the other characters are simply quoted. Delete the @.
869 (t 869 (t
870 (delete-char -1) 870 (delete-char -1)
871 ;; Be compatible with makeinfo: if @' and its ild are 871 ;; Be compatible with makeinfo: if @' and its ilk are
872 ;; followed by a @ without a brace, barf. 872 ;; followed by a @ without a brace, barf.
873 (if (looking-at "[\"'^`~=]") 873 (if (looking-at "[\"'^`~=]")
874 (progn 874 (progn
875 (if (= (char-after (1+ (point))) ?@) 875 (if (= (char-after (1+ (point))) ?@)
876 (error "Use braces to give a command as an argument to @%c" 876 (error "Use braces to give a command as an argument to @%c"