From 6e76e630cf28d46d3f118687c6d5ba959b12de28 Mon Sep 17 00:00:00 2001 From: defanor Date: Tue, 21 Nov 2017 11:33:40 +0300 Subject: Restore ^{} for superscripts and similar text bits in Emacs Superscripts and subscripts, as they were rendered, shorten lines in GUI Emacs, breaking tables if those contained subscripts or superscripts. In terminal Emacs, they were just indistinguishable from regular text. And there was a minor hack for these. Mostly undoing that (for strikethrough as well), though leaving slight raising. --- pancake.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'pancake.el') diff --git a/pancake.el b/pancake.el index 341d74f..b56e417 100644 --- a/pancake.el +++ b/pancake.el @@ -195,11 +195,10 @@ (add-face-text-property start (point) face t)) (`(subscript . ,rest) (pancake-print-line rest) - (add-text-properties start (point) '(display (height 0.75)))) + (add-text-properties start (point) '(display (raise -0.2)))) (`(superscript . ,rest) (pancake-print-line rest) - (add-text-properties start (point) '(display ((raise 0.25) - (height 0.75))))) + (add-text-properties start (point) '(display (raise 0.2)))) (`(denotation (math . ,formula) . ,rest) (pancake-print-line rest)) (`(denotation (link . ,uri) . ,rest) -- cgit v1.2.3