summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGemini Lasswell <gazally@runbox.com>2018-11-26 11:20:02 -0800
committerGemini Lasswell <gazally@runbox.com>2018-11-27 12:13:22 -0800
commit8abd7e7d133059e41a5ae71cb254e5a3b2a04e6c (patch)
tree63030d296c8fc37e7b0ecc640079ddd57a210bd9
parentc33a78fe523eba9fbbeee20c12b1012aa808259f (diff)
downloademacs-8abd7e7d133059e41a5ae71cb254e5a3b2a04e6c.tar.gz
Fix bugs in output report
* lisp/emacs-lisp/erb.el (erb-write-result-org-file): Add missing backslash. Add name for xtics table.
-rw-r--r--lisp/emacs-lisp/erb.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/erb.el b/lisp/emacs-lisp/erb.el
index 5327f672434..7d3f33dcca2 100644
--- a/lisp/emacs-lisp/erb.el
+++ b/lisp/emacs-lisp/erb.el
@@ -1901,7 +1901,7 @@ structure per task."
(insert
title
"#+OPTIONS: toc:2 num:2 author:nil\n"
- "#+LATEX_HEADER: \usepackage[margin=0.5in]{geometry}\n"
+ "#+LATEX_HEADER: \\usepackage[margin=0.5in]{geometry}\n"
"* Benchmark results\n")
(iter-do (file-summaries (erb--chunk-list 'erb--summary
'(file) summaries))
@@ -2018,6 +2018,7 @@ structure per task."
"System information last updated: %Y-%m-%d %a %H:%M\n"
(map-elt info :time))
"* Xtics :noexport:\n"
+ "#+NAME: xtics\n"
"#+BEGIN_SRC gnuplot :export none\n"
xtics
"#+END_SRC\n")))))))