>From b8c5dfa7748c32444aeac5418b54155207aa2c5d Mon Sep 17 00:00:00 2001 From: Arash Esbati Date: Sat, 28 Mar 2015 16:55:50 +0100 Subject: [PATCH 1/3] Add three missing LaTeX lengths. * latex.el (LaTeX-common-initialization): Add standard LaTeX lengths `arraycolsep', `arrayrulewidth' and `doublerulesep'. --- ChangeLog | 5 +++++ latex.el | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 146564f..9cb2e6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-03-28 Arash Esbati + + * latex.el (LaTeX-common-initialization): Add standard LaTeX + lengths `arraycolsep', `arrayrulewidth' and `doublerulesep'. + 2015-03-23 Tassilo Horn * tex.el (TeX-run-style-hooks): Apply style hooks in reverse diff --git a/latex.el b/latex.el index c232c24..6ebcfb6 100644 --- a/latex.el +++ b/latex.el @@ -5973,11 +5973,11 @@ i.e. you do _not_ have to cater for this yourself by adding \\\\' or $." (LaTeX-add-counters "page" "equation" "enumi" "enumii" "enumiii" "enumiv" "footnote" "mpfootnote") - (LaTeX-add-lengths "baselineskip" "baselinestretch" "columnsep" - "columnwidth" "evensidemargin" "linewidth" "oddsidemargin" - "paperwidth" "paperheight" "parindent" "parskip" - "tabcolsep" "textheight" "textwidth" "topmargin" - "unitlength") + (LaTeX-add-lengths "arraycolsep" "arrayrulewidth" "baselineskip" "baselinestretch" + "columnsep" "columnwidth" "doublerulesep" "evensidemargin" + "linewidth" "oddsidemargin" "paperwidth" "paperheight" + "parindent" "parskip" "tabcolsep" "textheight" "textwidth" + "topmargin" "unitlength") (TeX-add-symbols '("addtocounter" TeX-arg-counter "Value") -- 2.3.4