From 46ed6ccc13d2ebe31130d14fe0b470e5072719dc Mon Sep 17 00:00:00 2001 Message-Id: <46ed6ccc13d2ebe31130d14fe0b470e5072719dc.1717792141.git.mdw@distorted.org.uk> From: Mark Wooding Date: Wed, 11 May 2016 20:46:15 +0100 Subject: [PATCH] dot/xinitrc: Actually fix Emacs width for version 23-lucid. Organization: Straylight/Edgeware From: Mark Wooding --- dot/xinitrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dot/xinitrc b/dot/xinitrc index 226b87d..0871b35 100755 --- a/dot/xinitrc +++ b/dot/xinitrc @@ -249,7 +249,12 @@ case "$emacs" in e_colchars=82 e_cextra=-6 e_lineht=13 e_vextra=42 ;; - emacs2[34]-lucid) + emacs23-lucid) + e_colwd=492 e_hextra=7 + e_colchars=82 e_cextra=-6 + e_lineht=13 e_vextra=48 + ;; + emacs24-lucid) e_colwd=492 e_hextra=7 e_colchars=82 e_cextra=-5 e_lineht=13 e_vextra=48 -- [mdw]