diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-08-23 18:37:20 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-08-23 18:37:20 +0000 |
commit | 1c232e1069a994efecd304789d823fd30686d700 (patch) | |
tree | 8d64846c06b44fe19b9a4bb2da7681469fd92832 /lisp/textmodes/texinfmt.el | |
parent | 8d559559ce2af88493855cf3a46b299b46ef0846 (diff) | |
download | emacs-1c232e1069a994efecd304789d823fd30686d700.tar.gz |
(\,): Calrify it's not a new-style unquote.
Diffstat (limited to 'lisp/textmodes/texinfmt.el')
-rw-r--r-- | lisp/textmodes/texinfmt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index 9e4f9ca9ec5..31e7946c58e 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el @@ -3270,7 +3270,7 @@ Default is to leave paragraph indentation as is." ;; Take arguments ;; @,{c} ==> c, cedilla accent -(put ', 'texinfo-format 'texinfo-format-cedilla-accent) +(put '\, 'texinfo-format 'texinfo-format-cedilla-accent) (defun texinfo-format-cedilla-accent () (insert (texinfo-parse-arg-discard) ",") (goto-char texinfo-command-start)) |