From 102e63f80004e76d1532e97f73508e9eea2ada9e Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Thu, 11 Dec 2014 10:11:53 -0800 Subject: [PATCH] remove org-latex which no longer exists --- emacs_el/configuration/ess_remote_eval.el | 1 - emacs_el/configuration/mode-line-cleaner.el | 1 + .../configuration/org-mode-configuration.el | 44 +++++++++---------- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/emacs_el/configuration/ess_remote_eval.el b/emacs_el/configuration/ess_remote_eval.el index c70e9a7..838c15f 100644 --- a/emacs_el/configuration/ess_remote_eval.el +++ b/emacs_el/configuration/ess_remote_eval.el @@ -4,4 +4,3 @@ (shell-command-on-region start end "eval_r" (get-buffer-create "***essregionremoteeval***")) (kill-buffer "***essregionremoteeval***") ) - diff --git a/emacs_el/configuration/mode-line-cleaner.el b/emacs_el/configuration/mode-line-cleaner.el index 650d430..bcd34c7 100644 --- a/emacs_el/configuration/mode-line-cleaner.el +++ b/emacs_el/configuration/mode-line-cleaner.el @@ -1,4 +1,5 @@ ; clean-mode-line from http://www.masteringemacs.org/articles/2012/09/10/hiding-replacing-modeline-strings/ +(require 'cl) (defvar mode-line-cleaner-alist `((auto-complete-mode . " α") (yas/minor-mode . " υ") diff --git a/emacs_el/configuration/org-mode-configuration.el b/emacs_el/configuration/org-mode-configuration.el index e4232a2..a8b427c 100644 --- a/emacs_el/configuration/org-mode-configuration.el +++ b/emacs_el/configuration/org-mode-configuration.el @@ -435,28 +435,28 @@ Maildir, or by Message-ID." -;; org latex -;; stolen from http://kieranhealy.org/esk/kjhealy.html -(require 'org-latex) -;; Choose either listings or minted for exporting source code blocks. -;; Using minted (as here) requires pygments be installed. To use the -;; default listings package instead, use -;; (setq org-latex-listings t) -;; and change references to "minted" below to "listings" -; (setq org-latex-listings 'minted) - -;; default settings for minted code blocks -(setq org-latex-minted-options - '(;("frame" "single") - ("bgcolor" "bg") ; bg will need to be defined in the preamble of your document. It's defined in org-preamble-pdflatex.sty and org-preamble-xelatex.sty below. - ("fontsize" "\\small") - )) -;; turn off the default toc behavior; deal with it properly in headers to files. -(defun org-latex-no-toc (depth) - (when depth - (format "%% Org-mode is exporting headings to %s levels.\n" - depth))) -(setq org-latex-format-toc-function 'org-latex-no-toc) +;; ;; org latex +;; ;; stolen from http://kieranhealy.org/esk/kjhealy.html +;; (require 'org-latex) +;; ;; Choose either listings or minted for exporting source code blocks. +;; ;; Using minted (as here) requires pygments be installed. To use the +;; ;; default listings package instead, use +;; ;; (setq org-latex-listings t) +;; ;; and change references to "minted" below to "listings" +;; ; (setq org-latex-listings 'minted) +;; +;; ;; default settings for minted code blocks +;; (setq org-latex-minted-options +;; '(;("frame" "single") +;; ("bgcolor" "bg") ; bg will need to be defined in the preamble of your document. It's defined in org-preamble-pdflatex.sty and org-preamble-xelatex.sty below. +;; ("fontsize" "\\small") +;; )) +;; ;; turn off the default toc behavior; deal with it properly in headers to files. +;; (defun org-latex-no-toc (depth) +;; (when depth +;; (format "%% Org-mode is exporting headings to %s levels.\n" +;; depth))) +;; (setq org-latex-format-toc-function 'org-latex-no-toc) (require 'ox-latex) (add-to-list 'org-latex-classes -- 2.39.5