diff options
author | Tassilo Horn <tsdh@gnu.org> | 2015-09-15 14:10:48 +0200 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2015-09-15 14:10:48 +0200 |
commit | 40d3a151c281f841fb2b34a8c4ccdd3a80de908f (patch) | |
tree | c8d4c8388cc12c057c09a6a1098ca6b41c1c5327 /lisp/textmodes | |
parent | 13a71d8325fab3071568f64aad8cc7469983e976 (diff) | |
download | emacs-40d3a151c281f841fb2b34a8c4ccdd3a80de908f.tar.gz |
Use OPEN BOX instead of space for \quad.
* lisp/textmodes/tex-mode.el (tex--prettify-symbols-alist): Use OPEN BOX
character for \quad instead of a space.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r-- | lisp/textmodes/tex-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index 5fdf9e3b250..0ff0bee96c6 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -3272,7 +3272,7 @@ There might be text before point." ("\\prod" . ?∏) ("\\propto" . ?∝) ("\\qed" . ?∎) - ("\\quad" . ? ) + ("\\quad" . ?␣) ("\\rangle" . 10217) ; Literal ?⟩ breaks indentation. ("\\rbrace" . ?}) ("\\rbrack" . ?\]) |