* org-mode in French @ 2017-11-12 20:40 gmx 2017-11-12 21:00 ` Thomas S. Dye 2017-11-14 7:57 ` org-mode in French Rasmus 0 siblings, 2 replies; 14+ messages in thread From: gmx @ 2017-11-12 20:40 UTC (permalink / raw) To: emacs-orgmode Hello, I've been using Org-mode for several months now, with pleasure. However, I would like the .tex files use some packages (babel, french...), a particular koma-script class (scrartcl), etc., which allow me to release a. pdf file with French typographical standards. How to do this? Thank you for your help, Frederic ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: org-mode in French 2017-11-12 20:40 org-mode in French gmx @ 2017-11-12 21:00 ` Thomas S. Dye 2018-08-27 19:51 ` Org-mode and koma-script gmx 2017-11-14 7:57 ` org-mode in French Rasmus 1 sibling, 1 reply; 14+ messages in thread From: Thomas S. Dye @ 2017-11-12 21:00 UTC (permalink / raw) To: gmx; +Cc: emacs-orgmode Aloha Frederic, gmx writes: > Hello, > I've been using Org-mode for several months now, with pleasure. > However, I would like the .tex files use some packages (babel, > french...), a particular koma-script class (scrartcl), etc., which allow > me to release a. pdf file with French typographical standards. > > How to do this? > > Thank you for your help, > Frederic Below are two examples that should help you on your way. See the documentation for org-latex-classes for an explanation of [NO-DEFAULT-PACKAGES], etc., which you might or might not want to use. You can put the (add-to-list ...) functions in your .emacs so they are always available, or you can call one of the source code blocks from a buffer you want to export. I find it convenient to do this: #Local Variables # eval: (org-sbe "koma-article-palatino") You'll also need to specify the LaTeX class in the buffer you want to export: #+LATEX_CLASS: koma-article-palatino hth, Tom #+name: koma-article-times #+header: :results silent #+begin_src emacs-lisp (require 'ox-latex) (add-to-list 'org-latex-classes '("koma-article-times" "\\documentclass{scrartcl} [NO-DEFAULT-PACKAGES] [PACKAGES] [EXTRA] \\usepackage{microtype} \\usepackage{tgtermes} \\usepackage[scale=.9]{tgheros} \\usepackage{tgcursor} \\usepackage{paralist} \\usepackage[T1]{fontenc} \\usepackage{graphicx} \\usepackage{textcomp} \\usepackage{hyperref} \\newcommand{\\rc}{$^{14}$C}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) #+end_src #+name: koma-article-palatino #+header: :results silent #+begin_src emacs-lisp (require 'ox-latex) (add-to-list 'org-latex-classes '("koma-article-palatino" "\\documentclass{scrartcl} [NO-DEFAULT-PACKAGES] [PACKAGES] [EXTRA] \\usepackage{microtype} \\usepackage{tgpagella} \\linespread{1.05} \\usepackage[semibold]{sourcesanspro} \\usepackage{tgcursor} \\usepackage{paralist} \\usepackage[T1]{fontenc} \\usepackage{graphicx} \\usepackage{textcomp} \\usepackage{hyperref} \\newcommand{\\rc}{$^{14}$C}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) #+end_src -- Thomas S. Dye http://www.tsdye.com ^ permalink raw reply [flat|nested] 14+ messages in thread
* Org-mode and koma-script 2017-11-12 21:00 ` Thomas S. Dye @ 2018-08-27 19:51 ` gmx 2018-08-27 19:57 ` gmx 2018-08-28 19:50 ` Nick Dokos 0 siblings, 2 replies; 14+ messages in thread From: gmx @ 2018-08-27 19:51 UTC (permalink / raw) To: emacs-orgmode Hello, I'm trying to use the koma class. I found a configuration of the.emacs file, in the manual and in a Stack Exchange post (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). I open a new .org file, and I declare: #+TITLE: MyTitle #+DATE: date #+LANGUAGE: fr #+LaTeX_CLASS: koma-article When I want to export my work in .pdf, I get the following answer: Unknown LaTeX class 'koma-article'. What to do? Thank you for your advice Frédéric (real newbie with org-mode, but I do my best) ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-27 19:51 ` Org-mode and koma-script gmx @ 2018-08-27 19:57 ` gmx 2018-08-27 22:00 ` Tim Cross 2018-08-28 19:50 ` Nick Dokos 1 sibling, 1 reply; 14+ messages in thread From: gmx @ 2018-08-27 19:57 UTC (permalink / raw) To: emacs-orgmode@gnu.org I forgot the Le 27/08/2018 à 21:51, gmx a écrit : > Hello, > > I'm trying to use the koma class. I found a configuration of the.emacs > file, in the manual and in a Stack Exchange post > (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). > > > I open a new .org file, and I declare: > #+TITLE: MyTitle > #+DATE: date > #+LANGUAGE: fr > #+LaTeX_CLASS: koma-article > > When I want to export my work in .pdf, I get the following answer: > Unknown LaTeX class 'koma-article'. > > What to do? > Thank you for your advice > > Frédéric (real newbie with org-mode, but I do my best) > contents of the file. Ready ? ;; Added by Package.el. This must come before configurations of ;; installed packages. Don't delete this line. If you don't want it, ;; just comment it out by adding a semicolon to the start of the line. ;; You may delete these explanatory comments. (package-initialize) (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(ansi-color-faces-vector [default default default italic underline success warning error]) '(ansi-color-names-vector ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" "#8cc4ff" "#eeeeec"]) '(current-language-environment "UTF-8") '(custom-enabled-themes (quote (deeper-blue))) '(display-battery-mode t)) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) (put 'upcase-region 'disabled nil) ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode (require 'ox-latex) (unless (boundp 'org-latex-classes) (setq org-latex-classes nil)) + (add-to-list 'org-latex-classes '("article" "\\documentclass{article}" ("\\section{%s}" . "\\section*{%s}"))) ;; Pour configurer les subdivisions des articles (add-to-list 'org-latex-classes '("article" "\\documentclass{article}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) ;; Pour configurer les subdivisions de la classe book (indiquer : #+LaTeX_CLASS: book) (with-eval-after-load "ox-latex" (add-to-list 'org-latex-classes '("book" "\\documentclass{book}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: koma-article (with-eval-after-load "ox-latex" (add-to-list 'org-latex-classes '("koma-article" "\\documentclass{scrartcl}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-27 19:57 ` gmx @ 2018-08-27 22:00 ` Tim Cross 2018-08-28 1:56 ` gmx 2018-08-28 19:44 ` Nick Dokos 0 siblings, 2 replies; 14+ messages in thread From: Tim Cross @ 2018-08-27 22:00 UTC (permalink / raw) To: gmx; +Cc: emacs-orgmode@gnu.org If that is a copy of what is in your .emacs or init.el file, then I think you have a number of errors. Try running emacs -q and see if emacs reports errors in your init file. Tim gmx <fredstev@gmx.fr> writes: > I forgot the > > Le 27/08/2018 à 21:51, gmx a écrit: >> Hello, >> >> I'm trying to use the koma class. I found a configuration of the.emacs >> file, in the manual and in a Stack Exchange post >> (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). >> >> >> I open a new .org file, and I declare: >> #+TITLE: MyTitle >> #+DATE: date >> #+LANGUAGE: fr >> #+LaTeX_CLASS: koma-article >> >> When I want to export my work in .pdf, I get the following answer: >> Unknown LaTeX class 'koma-article'. >> >> What to do? >> Thank you for your advice >> >> Frédéric (real newbie with org-mode, but I do my best) >> > contents of the file. Ready ? > > > > ;; Added by Package.el. This must come before configurations of > ;; installed packages. Don't delete this line. If you don't want it, > ;; just comment it out by adding a semicolon to the start of the line. > ;; You may delete these explanatory comments. > (package-initialize) > > (custom-set-variables > ;; custom-set-variables was added by Custom. > ;; If you edit it by hand, you could mess it up, so be careful. > ;; Your init file should contain only one such instance. > ;; If there is more than one, they won't work right. > '(ansi-color-faces-vector > [default default default italic underline success warning error]) > '(ansi-color-names-vector > ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" > "#8cc4ff" "#eeeeec"]) > '(current-language-environment "UTF-8") > '(custom-enabled-themes (quote (deeper-blue))) > '(display-battery-mode t)) > (custom-set-faces > ;; custom-set-faces was added by Custom. > ;; If you edit it by hand, you could mess it up, so be careful. > ;; Your init file should contain only one such instance. > ;; If there is more than one, they won't work right. > ) > (put 'upcase-region 'disabled nil) > > > ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; > ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html > > ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode > (require 'ox-latex) > (unless (boundp 'org-latex-classes) > (setq org-latex-classes nil)) > + > (add-to-list 'org-latex-classes > '("article" > "\\documentclass{article}" > ("\\section{%s}" . "\\section*{%s}"))) > > ;; Pour configurer les subdivisions des articles > (add-to-list 'org-latex-classes > '("article" > "\\documentclass{article}" > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}") > ("\\paragraph{%s}" . "\\paragraph*{%s}") > ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) > > ;; Pour configurer les subdivisions de la classe book (indiquer : > #+LaTeX_CLASS: book) > (with-eval-after-load "ox-latex" > (add-to-list 'org-latex-classes > '("book" > "\\documentclass{book}" > ("\\part{%s}" . "\\part*{%s}") > ("\\chapter{%s}" . "\\chapter*{%s}") > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) > > ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: > koma-article > (with-eval-after-load "ox-latex" > (add-to-list 'org-latex-classes > '("koma-article" "\\documentclass{scrartcl}" > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}") > ("\\paragraph{%s}" . "\\paragraph*{%s}") > ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) -- Tim Cross ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-27 22:00 ` Tim Cross @ 2018-08-28 1:56 ` gmx 2018-08-28 16:04 ` Tim Cross 2018-08-28 19:44 ` Nick Dokos 1 sibling, 1 reply; 14+ messages in thread From: gmx @ 2018-08-28 1:56 UTC (permalink / raw) To: Tim Cross; +Cc: emacs-orgmode@gnu.org Thanks a lot for your answer, Tim. I entered the emacs -q command, which started emacs. The only message from the Terminal (before launching emacs) is this: (emacs:3687): GConf-WARNING **: Client failed to connect to the D-BUS daemon: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken. But no real problem. I did't find the init file : where is it, please ? Frédéric Le 28/08/2018 à 00:00, Tim Cross a écrit : > If that is a copy of what is in your .emacs or init.el file, then I > think you have a number of errors. Try running emacs -q and see if emacs > reports errors in your init file. > > Tim > > gmx <fredstev@gmx.fr> writes: > >> I forgot the >> >> Le 27/08/2018 à 21:51, gmx a écrit: >>> Hello, >>> >>> I'm trying to use the koma class. I found a configuration of the.emacs >>> file, in the manual and in a Stack Exchange post >>> (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). >>> >>> >>> I open a new .org file, and I declare: >>> #+TITLE: MyTitle >>> #+DATE: date >>> #+LANGUAGE: fr >>> #+LaTeX_CLASS: koma-article >>> >>> When I want to export my work in .pdf, I get the following answer: >>> Unknown LaTeX class 'koma-article'. >>> >>> What to do? >>> Thank you for your advice >>> >>> Frédéric (real newbie with org-mode, but I do my best) >>> >> contents of the file. Ready ? >> >> >> >> ;; Added by Package.el. This must come before configurations of >> ;; installed packages. Don't delete this line. If you don't want it, >> ;; just comment it out by adding a semicolon to the start of the line. >> ;; You may delete these explanatory comments. >> (package-initialize) >> >> (custom-set-variables >> ;; custom-set-variables was added by Custom. >> ;; If you edit it by hand, you could mess it up, so be careful. >> ;; Your init file should contain only one such instance. >> ;; If there is more than one, they won't work right. >> '(ansi-color-faces-vector >> [default default default italic underline success warning error]) >> '(ansi-color-names-vector >> ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" >> "#8cc4ff" "#eeeeec"]) >> '(current-language-environment "UTF-8") >> '(custom-enabled-themes (quote (deeper-blue))) >> '(display-battery-mode t)) >> (custom-set-faces >> ;; custom-set-faces was added by Custom. >> ;; If you edit it by hand, you could mess it up, so be careful. >> ;; Your init file should contain only one such instance. >> ;; If there is more than one, they won't work right. >> ) >> (put 'upcase-region 'disabled nil) >> >> >> ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; >> ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html >> >> ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode >> (require 'ox-latex) >> (unless (boundp 'org-latex-classes) >> (setq org-latex-classes nil)) >> + >> (add-to-list 'org-latex-classes >> '("article" >> "\\documentclass{article}" >> ("\\section{%s}" . "\\section*{%s}"))) >> >> ;; Pour configurer les subdivisions des articles >> (add-to-list 'org-latex-classes >> '("article" >> "\\documentclass{article}" >> ("\\section{%s}" . "\\section*{%s}") >> ("\\subsection{%s}" . "\\subsection*{%s}") >> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >> ("\\paragraph{%s}" . "\\paragraph*{%s}") >> ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) >> >> ;; Pour configurer les subdivisions de la classe book (indiquer : >> #+LaTeX_CLASS: book) >> (with-eval-after-load "ox-latex" >> (add-to-list 'org-latex-classes >> '("book" >> "\\documentclass{book}" >> ("\\part{%s}" . "\\part*{%s}") >> ("\\chapter{%s}" . "\\chapter*{%s}") >> ("\\section{%s}" . "\\section*{%s}") >> ("\\subsection{%s}" . "\\subsection*{%s}") >> ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) >> >> ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: >> koma-article >> (with-eval-after-load "ox-latex" >> (add-to-list 'org-latex-classes >> '("koma-article" "\\documentclass{scrartcl}" >> ("\\section{%s}" . "\\section*{%s}") >> ("\\subsection{%s}" . "\\subsection*{%s}") >> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >> ("\\paragraph{%s}" . "\\paragraph*{%s}") >> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-28 1:56 ` gmx @ 2018-08-28 16:04 ` Tim Cross 2018-08-28 18:10 ` gmx 2018-08-28 21:59 ` gmx 0 siblings, 2 replies; 14+ messages in thread From: Tim Cross @ 2018-08-28 16:04 UTC (permalink / raw) To: gmx; +Cc: emacs-orgmode@gnu.org Sorry, I was in a rush before work and sent you the wrong command! What you need to do is run emacs --debug-init rather than emacs -q. Your emacs init is either in the file .emacs in your home directory or the file init.el in the .emacs.d directory (assuming your not using something like spacemacs or some other 'canned' setup, which may break out the config into other files). The code you posted i.e. >>> ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; >>> ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html >>> >>> ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode >>> (require 'ox-latex) >>> (unless (boundp 'org-latex-classes) >>> (setq org-latex-classes nil)) >>> + >>> (add-to-list 'org-latex-classes >>> '("article" >>> "\\documentclass{article}" >>> ("\\section{%s}" . "\\section*{%s}"))) >>> >>> ;; Pour configurer les subdivisions des articles >>> (add-to-list 'org-latex-classes >>> '("article" >>> "\\documentclass{article}" >>> ("\\section{%s}" . "\\section*{%s}") >>> ("\\subsection{%s}" . "\\subsection*{%s}") >>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) >>> >>> ;; Pour configurer les subdivisions de la classe book (indiquer : >>> #+LaTeX_CLASS: book) >>> (with-eval-after-load "ox-latex" >>> (add-to-list 'org-latex-classes >>> '("book" >>> "\\documentclass{book}" >>> ("\\part{%s}" . "\\part*{%s}") >>> ("\\chapter{%s}" . "\\chapter*{%s}") >>> ("\\section{%s}" . "\\section*{%s}") >>> ("\\subsection{%s}" . "\\subsection*{%s}") >>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) >>> >>> ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: >>> koma-article >>> (with-eval-after-load "ox-latex" >>> (add-to-list 'org-latex-classes >>> '("koma-article" "\\documentclass{scrartcl}" >>> ("\\section{%s}" . "\\section*{%s}") >>> ("\\subsection{%s}" . "\\subsection*{%s}") >>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) >> doesn't look quite right. It should be in your init file i.e. .emacs or .emacs.d/init.el and it needs to be correctly formed elisp statements, The --debug-init will check this. Looking at it, you seem to have a spurious '+' character, but there may be other problems as well. There is a customize interface you can use to add the korma classes, which may be easier than writing elisp if your not familiar with that. Do M-x customize-group <ret> org and have a look around. What I use in my init is (setq org-latex-classes '(("beamer" "\\documentclass[presentation]{beamer}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("hitec-article" "\\documentclass[12pt]{hitec} [DEFAULT-PACKAGES] [PACKAGES] [NO-EXTRA] \\settextfraction{0.95}\n" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("article" "\\documentclass[11pt]{article}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("korma-article" "\\documentclass[11pt]{scrartcl}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) ("report" "\\documentclass[11pt]{report}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("korma-report" "\\documentclass[11pt]{scrreport}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("korma-book" "\\documentclass[11pt]{scrbook}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) ("book" "\\documentclass[11pt]{book}" ("\\part{%s}" . "\\part*{%s}") ("\\chapter{%s}" . "\\chapter*{%s}") ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) gmx <fredstev@gmx.fr> writes: > Thanks a lot for your answer, Tim. I entered the emacs -q command, which > started emacs. The only message from the Terminal (before launching > emacs) is this: > > (emacs:3687): GConf-WARNING **: Client failed to connect to the D-BUS > daemon: > Did not receive a reply. Possible causes include: the remote application > did not send a reply, the message bus security policy blocked the reply, > the reply timeout expired, or the network connection was broken. > > But no real problem. > > I did't find the init file : where is it, please ? > > Frédéric > > > Le 28/08/2018 à 00:00, Tim Cross a écrit: >> If that is a copy of what is in your .emacs or init.el file, then I >> think you have a number of errors. Try running emacs -q and see if emacs >> reports errors in your init file. >> >> Tim >> >> gmx <fredstev@gmx.fr> writes: >> >>> I forgot the >>> >>> Le 27/08/2018 à 21:51, gmx a écrit: >>>> Hello, >>>> >>>> I'm trying to use the koma class. I found a configuration of the.emacs >>>> file, in the manual and in a Stack Exchange post >>>> (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). >>>> >>>> >>>> I open a new .org file, and I declare: >>>> #+TITLE: MyTitle >>>> #+DATE: date >>>> #+LANGUAGE: fr >>>> #+LaTeX_CLASS: koma-article >>>> >>>> When I want to export my work in .pdf, I get the following answer: >>>> Unknown LaTeX class 'koma-article'. >>>> >>>> What to do? >>>> Thank you for your advice >>>> >>>> Frédéric (real newbie with org-mode, but I do my best) >>>> >>> contents of the file. Ready ? >>> >>> >>> >>> ;; Added by Package.el. This must come before configurations of >>> ;; installed packages. Don't delete this line. If you don't want it, >>> ;; just comment it out by adding a semicolon to the start of the line. >>> ;; You may delete these explanatory comments. >>> (package-initialize) >>> >>> (custom-set-variables >>> ;; custom-set-variables was added by Custom. >>> ;; If you edit it by hand, you could mess it up, so be careful. >>> ;; Your init file should contain only one such instance. >>> ;; If there is more than one, they won't work right. >>> '(ansi-color-faces-vector >>> [default default default italic underline success warning error]) >>> '(ansi-color-names-vector >>> ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" >>> "#8cc4ff" "#eeeeec"]) >>> '(current-language-environment "UTF-8") >>> '(custom-enabled-themes (quote (deeper-blue))) >>> '(display-battery-mode t)) >>> (custom-set-faces >>> ;; custom-set-faces was added by Custom. >>> ;; If you edit it by hand, you could mess it up, so be careful. >>> ;; Your init file should contain only one such instance. >>> ;; If there is more than one, they won't work right. >>> ) >>> (put 'upcase-region 'disabled nil) >>> >>> >>> ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; >>> ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html >>> >>> ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode >>> (require 'ox-latex) >>> (unless (boundp 'org-latex-classes) >>> (setq org-latex-classes nil)) >>> + >>> (add-to-list 'org-latex-classes >>> '("article" >>> "\\documentclass{article}" >>> ("\\section{%s}" . "\\section*{%s}"))) >>> >>> ;; Pour configurer les subdivisions des articles >>> (add-to-list 'org-latex-classes >>> '("article" >>> "\\documentclass{article}" >>> ("\\section{%s}" . "\\section*{%s}") >>> ("\\subsection{%s}" . "\\subsection*{%s}") >>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) >>> >>> ;; Pour configurer les subdivisions de la classe book (indiquer : >>> #+LaTeX_CLASS: book) >>> (with-eval-after-load "ox-latex" >>> (add-to-list 'org-latex-classes >>> '("book" >>> "\\documentclass{book}" >>> ("\\part{%s}" . "\\part*{%s}") >>> ("\\chapter{%s}" . "\\chapter*{%s}") >>> ("\\section{%s}" . "\\section*{%s}") >>> ("\\subsection{%s}" . "\\subsection*{%s}") >>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) >>> >>> ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: >>> koma-article >>> (with-eval-after-load "ox-latex" >>> (add-to-list 'org-latex-classes >>> '("koma-article" "\\documentclass{scrartcl}" >>> ("\\section{%s}" . "\\section*{%s}") >>> ("\\subsection{%s}" . "\\subsection*{%s}") >>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) >> -- Tim Cross ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-28 16:04 ` Tim Cross @ 2018-08-28 18:10 ` gmx 2018-08-28 22:38 ` Tim Cross 2018-08-28 21:59 ` gmx 1 sibling, 1 reply; 14+ messages in thread From: gmx @ 2018-08-28 18:10 UTC (permalink / raw) Cc: emacs-orgmode@gnu.org Le 28/08/2018 à 18:04, Tim Cross a écrit : > Sorry, I was in a rush before work and sent you the wrong command! No problem. Thank you for giving me your time. > > What you need to do is run emacs --debug-init rather than emacs -q. Well. And the answer is... too long (many, many lines) : are ready to read it (please take a look down) ? > > Your emacs init is either in the file .emacs in your home directory or > the file init.el in the .emacs.d directory (assuming your not using > something like spacemacs or some other 'canned' setup, which may break > out the config into other files). I work with Debian 9. > > The code you posted i.e. Leaving directory ‘/root/.emacs.d/elpa/avy-20180814.2121’ \f Compiling file /root/.emacs.d/elpa/avy-20180814.2121/avy.el at Tue Aug 28 20:00:34 2018 Entering directory ‘/root/.emacs.d/elpa/avy-20180814.2121/’ \f Compiling no file at Tue Aug 28 20:00:35 2018 Leaving directory ‘/root/.emacs.d/elpa/ace-window-20180814.1516’ \f Compiling file /root/.emacs.d/elpa/ace-window-20180814.1516/ace-window.el at Tue Aug 28 20:00:35 2018 Entering directory ‘/root/.emacs.d/elpa/ace-window-20180814.1516/’ \f Compiling no file at Tue Aug 28 20:00:36 2018 Leaving directory ‘/root/.emacs.d/elpa/anzu-20161017.1607’ \f Compiling file /root/.emacs.d/elpa/anzu-20161017.1607/anzu.el at Tue Aug 28 20:00:36 2018 Entering directory ‘/root/.emacs.d/elpa/anzu-20161017.1607/’ \f Compiling no file at Tue Aug 28 20:00:37 2018 Leaving directory ‘/root/.emacs.d/elpa/seq-2.20’ \f Compiling file /root/.emacs.d/elpa/seq-2.20/seq-24.el at Tue Aug 28 20:00:37 2018 Entering directory ‘/root/.emacs.d/elpa/seq-2.20/’ \f Compiling file /root/.emacs.d/elpa/seq-2.20/seq-25.el at Tue Aug 28 20:00:37 2018 \f Compiling file /root/.emacs.d/elpa/seq-2.20/seq-pkg.el at Tue Aug 28 20:00:37 2018 \f Compiling file /root/.emacs.d/elpa/seq-2.20/seq.el at Tue Aug 28 20:00:37 2018 Leaving directory ‘/root/.emacs.d/elpa/seq-2.20/’ \f Compiling file /root/.emacs.d/elpa/seq-2.20/tests/seq-tests.el at Tue Aug 28 20:00:37 2018 Entering directory ‘/root/.emacs.d/elpa/seq-2.20/tests/’ \f Compiling no file at Tue Aug 28 20:00:39 2018 Leaving directory ‘/root/.emacs.d/elpa/beacon-20180706.1725’ \f Compiling file /root/.emacs.d/elpa/beacon-20180706.1725/beacon.el at Tue Aug 28 20:00:39 2018 Entering directory ‘/root/.emacs.d/elpa/beacon-20180706.1725/’ \f Compiling no file at Tue Aug 28 20:00:40 2018 Leaving directory ‘/root/.emacs.d/elpa/browse-kill-ring-20171219.1908’ \f Compiling file /root/.emacs.d/elpa/browse-kill-ring-20171219.1908/browse-kill-ring.el at Tue Aug 28 20:00:40 2018 Entering directory ‘/root/.emacs.d/elpa/browse-kill-ring-20171219.1908/’ \f Compiling no file at Tue Aug 28 20:00:41 2018 Leaving directory ‘/root/.emacs.d/elpa/crux-20180612.655’ \f Compiling file /root/.emacs.d/elpa/crux-20180612.655/crux.el at Tue Aug 28 20:00:41 2018 Entering directory ‘/root/.emacs.d/elpa/crux-20180612.655/’ \f Compiling no file at Tue Aug 28 20:00:42 2018 Leaving directory ‘/root/.emacs.d/elpa/makey-20131231.1430’ \f Compiling file /root/.emacs.d/elpa/makey-20131231.1430/makey.el at Tue Aug 28 20:00:42 2018 Entering directory ‘/root/.emacs.d/elpa/makey-20131231.1430/’ \f Compiling no file at Tue Aug 28 20:00:43 2018 Leaving directory ‘/root/.emacs.d/elpa/discover-my-major-20180606.511’ \f Compiling file /root/.emacs.d/elpa/discover-my-major-20180606.511/discover-my-major.el at Tue Aug 28 20:00:43 2018 Entering directory ‘/root/.emacs.d/elpa/discover-my-major-20180606.511/’ \f Compiling no file at Tue Aug 28 20:00:44 2018 Leaving directory ‘/root/.emacs.d/elpa/diff-hl-20180201.1155’ \f Compiling file /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-amend.el at Tue Aug 28 20:00:44 2018 Entering directory ‘/root/.emacs.d/elpa/diff-hl-20180201.1155/’ \f Compiling file /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-dired.el at Tue Aug 28 20:00:44 2018 \f Compiling file /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-flydiff.el at Tue Aug 28 20:00:44 2018 \f Compiling file /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-margin.el at Tue Aug 28 20:00:44 2018 \f Compiling file /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl.el at Tue Aug 28 20:00:44 2018 \f Compiling no file at Tue Aug 28 20:00:46 2018 Leaving directory ‘/root/.emacs.d/elpa/diminish-20170419.1736’ \f Compiling file /root/.emacs.d/elpa/diminish-20170419.1736/diminish.el at Tue Aug 28 20:00:46 2018 Entering directory ‘/root/.emacs.d/elpa/diminish-20170419.1736/’ \f Compiling no file at Tue Aug 28 20:00:47 2018 Leaving directory ‘/root/.emacs.d/elpa/easy-kill-20151031.529’ \f Compiling file /root/.emacs.d/elpa/easy-kill-20151031.529/easy-kill.el at Tue Aug 28 20:00:47 2018 Entering directory ‘/root/.emacs.d/elpa/easy-kill-20151031.529/’ \f Compiling no file at Tue Aug 28 20:00:51 2018 Leaving directory ‘/root/.emacs.d/elpa/editorconfig-20180823.452’ \f Compiling file /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-conf-mode.el at Tue Aug 28 20:00:51 2018 Entering directory ‘/root/.emacs.d/elpa/editorconfig-20180823.452/’ \f Compiling file /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-core-handle.el at Tue Aug 28 20:00:51 2018 \f Compiling file /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-core.el at Tue Aug 28 20:00:51 2018 \f Compiling file /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-fnmatch.el at Tue Aug 28 20:00:51 2018 \f Compiling file /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig.el at Tue Aug 28 20:00:51 2018 \f Compiling no file at Tue Aug 28 20:00:52 2018 Leaving directory ‘/root/.emacs.d/elpa/epl-20180205.2049’ \f Compiling file /root/.emacs.d/elpa/epl-20180205.2049/epl.el at Tue Aug 28 20:00:52 2018 Entering directory ‘/root/.emacs.d/elpa/epl-20180205.2049/’ \f Compiling no file at Tue Aug 28 20:00:56 2018 Leaving directory ‘/root/.emacs.d/elpa/expand-region-20180817.1134’ \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/cc-mode-expansions.el at Tue Aug 28 20:00:56 2018 Entering directory ‘/root/.emacs.d/elpa/expand-region-20180817.1134/’ \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/clojure-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/cperl-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/css-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/enh-ruby-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/er-basic-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/erlang-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/expand-region-core.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/expand-region-custom.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/expand-region.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/feature-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/html-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/js-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/js2-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/jsp-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/latex-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/nxml-mode-expansions.el at Tue Aug 28 20:00:56 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/octave-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/python-el-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/python-el-fgallina-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/python-mode-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/ruby-mode-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/sml-mode-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/subword-mode-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/text-mode-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/the-org-mode-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling file /root/.emacs.d/elpa/expand-region-20180817.1134/web-mode-expansions.el at Tue Aug 28 20:00:57 2018 \f Compiling no file at Tue Aug 28 20:00:57 2018 Leaving directory ‘/root/.emacs.d/elpa/pkg-info-20150517.1143’ \f Compiling file /root/.emacs.d/elpa/pkg-info-20150517.1143/pkg-info.el at Tue Aug 28 20:01:03 2018 Entering directory ‘/root/.emacs.d/elpa/pkg-info-20150517.1143/’ \f Compiling no file at Tue Aug 28 20:01:04 2018 Leaving directory ‘/root/.emacs.d/elpa/dash-20180726.1213’ \f Compiling file /root/.emacs.d/elpa/dash-20180726.1213/dash.el at Tue Aug 28 20:01:04 2018 Entering directory ‘/root/.emacs.d/elpa/dash-20180726.1213/’ \f Compiling no file at Tue Aug 28 20:01:08 2018 Leaving directory ‘/root/.emacs.d/elpa/flycheck-20180823.826’ \f Compiling file /root/.emacs.d/elpa/flycheck-20180823.826/flycheck-ert.el at Tue Aug 28 20:01:08 2018 Entering directory ‘/root/.emacs.d/elpa/flycheck-20180823.826/’ \f Compiling file /root/.emacs.d/elpa/flycheck-20180823.826/flycheck.el at Tue Aug 28 20:01:08 2018 \f Compiling no file at Tue Aug 28 20:01:10 2018 Leaving directory ‘/root/.emacs.d/elpa/ht-20180129.2234’ \f Compiling file /root/.emacs.d/elpa/ht-20180129.2234/ht.el at Tue Aug 28 20:01:10 2018 Entering directory ‘/root/.emacs.d/elpa/ht-20180129.2234/’ \f Compiling no file at Tue Aug 28 20:01:12 2018 Leaving directory ‘/root/.emacs.d/elpa/marshal-20180124.1239’ \f Compiling file /root/.emacs.d/elpa/marshal-20180124.1239/marshal.el at Tue Aug 28 20:01:12 2018 Entering directory ‘/root/.emacs.d/elpa/marshal-20180124.1239/’ \f Compiling no file at Tue Aug 28 20:01:12 2018 Leaving directory ‘/root/.emacs.d/elpa/logito-20120225.2055’ \f Compiling file /root/.emacs.d/elpa/logito-20120225.2055/logito.el at Tue Aug 28 20:01:12 2018 Entering directory ‘/root/.emacs.d/elpa/logito-20120225.2055/’ \f Compiling no file at Tue Aug 28 20:01:13 2018 Leaving directory ‘/root/.emacs.d/elpa/pcache-20170105.2214’ \f Compiling file /root/.emacs.d/elpa/pcache-20170105.2214/pcache.el at Tue Aug 28 20:01:13 2018 Entering directory ‘/root/.emacs.d/elpa/pcache-20170105.2214/’ \f Compiling no file at Tue Aug 28 20:01:15 2018 Leaving directory ‘/root/.emacs.d/elpa/gh-20180308.2138’ \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-api.el at Tue Aug 28 20:01:15 2018 Entering directory ‘/root/.emacs.d/elpa/gh-20180308.2138/’ \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-auth.el at Tue Aug 28 20:01:15 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-cache.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-comments.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-common.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-gist.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-issue-comments.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-issues.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-oauth.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-orgs.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-profile.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-pull-comments.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-pulls.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-repos.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-search.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-url.el at Tue Aug 28 20:01:16 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-users.el at Tue Aug 28 20:01:17 2018 \f Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh.el at Tue Aug 28 20:01:17 2018 \f Compiling no file at Tue Aug 28 20:01:23 2018 Leaving directory ‘/root/.emacs.d/elpa/gist-20171128.406’ \f Compiling file /root/.emacs.d/elpa/gist-20171128.406/gist.el at Tue Aug 28 20:01:23 2018 Entering directory ‘/root/.emacs.d/elpa/gist-20171128.406/’ \f Compiling no file at Tue Aug 28 20:01:24 2018 Leaving directory ‘/root/.emacs.d/elpa/git-timemachine-20180607.820’ \f Compiling file /root/.emacs.d/elpa/git-timemachine-20180607.820/git-timemachine.el at Tue Aug 28 20:01:24 2018 Entering directory ‘/root/.emacs.d/elpa/git-timemachine-20180607.820/’ \f Compiling no file at Tue Aug 28 20:01:25 2018 Leaving directory ‘/root/.emacs.d/elpa/gitconfig-mode-20180318.1956’ \f Compiling file /root/.emacs.d/elpa/gitconfig-mode-20180318.1956/gitconfig-mode.el at Tue Aug 28 20:01:25 2018 Entering directory ‘/root/.emacs.d/elpa/gitconfig-mode-20180318.1956/’ \f Compiling no file at Tue Aug 28 20:01:26 2018 Leaving directory ‘/root/.emacs.d/elpa/gitignore-mode-20180318.1956’ \f Compiling file /root/.emacs.d/elpa/gitignore-mode-20180318.1956/gitignore-mode.el at Tue Aug 28 20:01:26 2018 Entering directory ‘/root/.emacs.d/elpa/gitignore-mode-20180318.1956/’ \f Compiling no file at Tue Aug 28 20:01:28 2018 Leaving directory ‘/root/.emacs.d/elpa/god-mode-20180117.1134’ \f Compiling file /root/.emacs.d/elpa/god-mode-20180117.1134/god-mode-isearch.el at Tue Aug 28 20:01:28 2018 Entering directory ‘/root/.emacs.d/elpa/god-mode-20180117.1134/’ \f Compiling file /root/.emacs.d/elpa/god-mode-20180117.1134/god-mode.el at Tue Aug 28 20:01:28 2018 \f Compiling no file at Tue Aug 28 20:01:31 2018 Leaving directory ‘/root/.emacs.d/elpa/grizzl-20160818.737’ \f Compiling file /root/.emacs.d/elpa/grizzl-20160818.737/grizzl.el at Tue Aug 28 20:01:31 2018 Entering directory ‘/root/.emacs.d/elpa/grizzl-20160818.737/’ \f Compiling no file at Tue Aug 28 20:01:32 2018 Leaving directory ‘/root/.emacs.d/elpa/guru-mode-20170730.731’ \f Compiling file /root/.emacs.d/elpa/guru-mode-20170730.731/guru-mode.el at Tue Aug 28 20:01:32 2018 Entering directory ‘/root/.emacs.d/elpa/guru-mode-20170730.731/’ \f Compiling no file at Tue Aug 28 20:01:32 2018 Leaving directory ‘/root/.emacs.d/elpa/hl-todo-20180710.455’ \f Compiling file /root/.emacs.d/elpa/hl-todo-20180710.455/hl-todo.el at Tue Aug 28 20:01:32 2018 Entering directory ‘/root/.emacs.d/elpa/hl-todo-20180710.455/’ \f Compiling no file at Tue Aug 28 20:01:34 2018 Leaving directory ‘/root/.emacs.d/elpa/imenu-anywhere-20170805.1855’ \f Compiling file /root/.emacs.d/elpa/imenu-anywhere-20170805.1855/imenu-anywhere.el at Tue Aug 28 20:01:34 2018 Entering directory ‘/root/.emacs.d/elpa/imenu-anywhere-20170805.1855/’ \f Compiling no file at Tue Aug 28 20:01:39 2018 Leaving directory ‘/root/.emacs.d/elpa/projectile-20180824.2239’ \f Compiling file /root/.emacs.d/elpa/projectile-20180824.2239/projectile.el at Tue Aug 28 20:01:39 2018 Entering directory ‘/root/.emacs.d/elpa/projectile-20180824.2239/’ \f Compiling no file at Tue Aug 28 20:01:42 2018 Leaving directory ‘/root/.emacs.d/elpa/async-20180527.1730’ \f Compiling file /root/.emacs.d/elpa/async-20180527.1730/async-bytecomp.el at Tue Aug 28 20:01:42 2018 Entering directory ‘/root/.emacs.d/elpa/async-20180527.1730/’ \f Compiling file /root/.emacs.d/elpa/async-20180527.1730/async.el at Tue Aug 28 20:01:42 2018 \f Compiling file /root/.emacs.d/elpa/async-20180527.1730/dired-async.el at Tue Aug 28 20:01:43 2018 \f Compiling file /root/.emacs.d/elpa/async-20180527.1730/smtpmail-async.el at Tue Aug 28 20:01:43 2018 \f Compiling no file at Tue Aug 28 20:01:46 2018 Leaving directory ‘/root/.emacs.d/elpa/with-editor-20180726.2044’ \f Compiling file /root/.emacs.d/elpa/with-editor-20180726.2044/with-editor.el at Tue Aug 28 20:01:46 2018 Entering directory ‘/root/.emacs.d/elpa/with-editor-20180726.2044/’ \f Compiling no file at Tue Aug 28 20:01:50 2018 Leaving directory ‘/root/.emacs.d/elpa/magit-popup-20180726.2037’ \f Compiling file /root/.emacs.d/elpa/magit-popup-20180726.2037/magit-popup.el at Tue Aug 28 20:01:50 2018 Entering directory ‘/root/.emacs.d/elpa/magit-popup-20180726.2037/’ \f Compiling no file at Tue Aug 28 20:01:59 2018 Leaving directory ‘/root/.emacs.d/elpa/git-commit-20180802.2018’ \f Compiling file /root/.emacs.d/elpa/git-commit-20180802.2018/git-commit.el at Tue Aug 28 20:01:59 2018 Entering directory ‘/root/.emacs.d/elpa/git-commit-20180802.2018/’ \f Compiling no file at Tue Aug 28 20:02:18 2018 Leaving directory ‘/root/.emacs.d/elpa/move-text-20170909.330’ \f Compiling file /root/.emacs.d/elpa/move-text-20170909.330/move-text.el at Tue Aug 28 20:02:18 2018 Entering directory ‘/root/.emacs.d/elpa/move-text-20170909.330/’ \f Compiling no file at Tue Aug 28 20:02:20 2018 Leaving directory ‘/root/.emacs.d/elpa/operate-on-number-20150707.623’ \f Compiling file /root/.emacs.d/elpa/operate-on-number-20150707.623/operate-on-number.el at Tue Aug 28 20:02:20 2018 Entering directory ‘/root/.emacs.d/elpa/operate-on-number-20150707.623/’ In magit-merge-into: magit-merge.el:106:4:Warning: ‘(upstream (magit-get-upstream-branch))’ is a malformed function magit-merge.el:111:63:Warning: reference to free variable ‘upstream’ In end of data: magit-merge.el:280:1:Warning: the following functions are not known to be defined: when-let*, upstream \f Compiling no file at Tue Aug 28 20:02:21 2018 Leaving directory ‘/root/.emacs.d/elpa/rich-minority-20170813.1322’ \f Compiling file /root/.emacs.d/elpa/rich-minority-20170813.1322/rich-minority.el at Tue Aug 28 20:02:21 2018 Entering directory ‘/root/.emacs.d/elpa/rich-minority-20170813.1322/’ \f Compiling no file at Tue Aug 28 20:02:24 2018 Leaving directory ‘/root/.emacs.d/elpa/smart-mode-line-20180801.341’ \f Compiling file /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line-dark-theme.el at Tue Aug 28 20:02:24 2018 Entering directory ‘/root/.emacs.d/elpa/smart-mode-line-20180801.341/’ \f Compiling file /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line-light-theme.el at Tue Aug 28 20:02:24 2018 \f Compiling file /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line-respectful-theme.el at Tue Aug 28 20:02:24 2018 \f Compiling file /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line.el at Tue Aug 28 20:02:24 2018 \f Compiling no file at Tue Aug 28 20:02:35 2018 Leaving directory ‘/root/.emacs.d/elpa/smartparens-20180826.1053’ \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-clojure.el at Tue Aug 28 20:02:35 2018 Entering directory ‘/root/.emacs.d/elpa/smartparens-20180826.1053/’ \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-config.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-crystal.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-elixir.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-ess.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-haskell.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-html.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-javascript.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-latex.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-lua.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-markdown.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-ml.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-org.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-python.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-racket.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-ruby.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-rust.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-scala.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-text.el at Tue Aug 28 20:02:36 2018 \f Compiling file /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens.el at Tue Aug 28 20:02:36 2018 \f Compiling no file at Tue Aug 28 20:02:37 2018 Leaving directory ‘/root/.emacs.d/elpa/smartrep-20150509.230’ \f Compiling file /root/.emacs.d/elpa/smartrep-20150509.230/smartrep.el at Tue Aug 28 20:02:38 2018 Entering directory ‘/root/.emacs.d/elpa/smartrep-20150509.230/’ \f Compiling no file at Tue Aug 28 20:02:39 2018 Leaving directory ‘/root/.emacs.d/elpa/undo-tree-0.6.5’ \f Compiling file /root/.emacs.d/elpa/undo-tree-0.6.5/undo-tree.el at Tue Aug 28 20:02:39 2018 Entering directory ‘/root/.emacs.d/elpa/undo-tree-0.6.5/’ \f Compiling no file at Tue Aug 28 20:02:40 2018 Leaving directory ‘/root/.emacs.d/elpa/volatile-highlights-20160612.155’ \f Compiling file /root/.emacs.d/elpa/volatile-highlights-20160612.155/volatile-highlights.el at Tue Aug 28 20:02:40 2018 Entering directory ‘/root/.emacs.d/elpa/volatile-highlights-20160612.155/’ \f Compiling no file at Tue Aug 28 20:02:43 2018 Leaving directory ‘/root/.emacs.d/elpa/which-key-20180621.1938’ \f Compiling file /root/.emacs.d/elpa/which-key-20180621.1938/which-key.el at Tue Aug 28 20:02:43 2018 Entering directory ‘/root/.emacs.d/elpa/which-key-20180621.1938/’ \f Compiling no file at Tue Aug 28 20:02:45 2018 Leaving directory ‘/root/.emacs.d/elpa/zop-to-char-20160212.1554’ \f Compiling file /root/.emacs.d/elpa/zop-to-char-20160212.1554/zop-to-char.el at Tue Aug 28 20:02:46 2018 Entering directory ‘/root/.emacs.d/elpa/zop-to-char-20160212.1554/’ \f Compiling no file at Tue Aug 28 20:02:46 2018 Leaving directory ‘/root/.emacs.d/elpa/ivy-20180822.1824’ \f Compiling file /root/.emacs.d/elpa/ivy-20180822.1824/colir.el at Tue Aug 28 20:02:50 2018 Entering directory ‘/root/.emacs.d/elpa/ivy-20180822.1824/’ \f Compiling file /root/.emacs.d/elpa/ivy-20180822.1824/ivy-overlay.el at Tue Aug 28 20:02:50 2018 \f Compiling file /root/.emacs.d/elpa/ivy-20180822.1824/ivy.el at Tue Aug 28 20:02:50 2018 \f Compiling no file at Tue Aug 28 20:02:53 2018 Leaving directory ‘/root/.emacs.d/elpa/swiper-20180813.1625’ \f Compiling file /root/.emacs.d/elpa/swiper-20180813.1625/swiper.el at Tue Aug 28 20:02:53 2018 Entering directory ‘/root/.emacs.d/elpa/swiper-20180813.1625/’ \f Compiling no file at Tue Aug 28 20:02:56 2018 Leaving directory ‘/root/.emacs.d/elpa/counsel-20180820.1500’ \f Compiling file /root/.emacs.d/elpa/counsel-20180820.1500/counsel.el at Tue Aug 28 20:02:56 2018 Entering directory ‘/root/.emacs.d/elpa/counsel-20180820.1500/’ \f Compiling no file at Tue Aug 28 20:03:00 2018 Leaving directory ‘/root/.emacs.d/elpa/company-20180802.1207’ \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-abbrev.el at Tue Aug 28 20:03:00 2018 Entering directory ‘/root/.emacs.d/elpa/company-20180802.1207/’ \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-bbdb.el at Tue Aug 28 20:03:00 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-capf.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-clang.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-cmake.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-css.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-dabbrev-code.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-dabbrev.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-eclim.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-elisp.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-etags.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-files.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-gtags.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-ispell.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-keywords.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-nxml.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-oddmuse.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-semantic.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-template.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-tempo.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-tng.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-xcode.el at Tue Aug 28 20:03:01 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-yasnippet.el at Tue Aug 28 20:03:02 2018 \f Compiling file /root/.emacs.d/elpa/company-20180802.1207/company.el at Tue Aug 28 20:03:02 2018 \f Compiling no file at Tue Aug 28 20:03:02 2018 Leaving directory ‘/root/.emacs.d/elpa/rainbow-delimiters-20170929.1132’ \f Compiling file /root/.emacs.d/elpa/rainbow-delimiters-20170929.1132/rainbow-delimiters.el at Tue Aug 28 20:03:03 2018 Entering directory ‘/root/.emacs.d/elpa/rainbow-delimiters-20170929.1132/’ \f Compiling no file at Tue Aug 28 20:03:03 2018 Leaving directory ‘/root/.emacs.d/elpa/elisp-slime-nav-20160128.1909’ \f Compiling file /root/.emacs.d/elpa/elisp-slime-nav-20160128.1909/elisp-slime-nav.el at Tue Aug 28 20:03:03 2018 Entering directory ‘/root/.emacs.d/elpa/elisp-slime-nav-20160128.1909/’ \f Compiling no file at Tue Aug 28 20:03:04 2018 Leaving directory ‘/root/.emacs.d/elpa/rainbow-mode-1.0.1’ \f Compiling file /root/.emacs.d/elpa/rainbow-mode-1.0.1/rainbow-mode.el at Tue Aug 28 20:03:04 2018 Entering directory ‘/root/.emacs.d/elpa/rainbow-mode-1.0.1/’ \f Compiling no file at Tue Aug 28 20:03:09 2018 Leaving directory ‘/root/.emacs.d/elpa/js2-mode-20180724.801’ \f Compiling file /root/.emacs.d/elpa/js2-mode-20180724.801/js2-imenu-extras.el at Tue Aug 28 20:03:09 2018 Entering directory ‘/root/.emacs.d/elpa/js2-mode-20180724.801/’ \f Compiling file /root/.emacs.d/elpa/js2-mode-20180724.801/js2-mode.el at Tue Aug 28 20:03:09 2018 \f Compiling file /root/.emacs.d/elpa/js2-mode-20180724.801/js2-old-indent.el at Tue Aug 28 20:03:13 2018 \f Compiling no file at Tue Aug 28 20:03:17 2018 Leaving directory ‘/root/.emacs.d/elpa/json-snatcher-20150512.347’ \f Compiling file /root/.emacs.d/elpa/json-snatcher-20150512.347/json-snatcher.el at Tue Aug 28 20:03:17 2018 Entering directory ‘/root/.emacs.d/elpa/json-snatcher-20150512.347/’ \f Compiling no file at Tue Aug 28 20:03:17 2018 Leaving directory ‘/root/.emacs.d/elpa/json-reformat-20160212.853’ \f Compiling file /root/.emacs.d/elpa/json-reformat-20160212.853/json-reformat.el at Tue Aug 28 20:03:17 2018 Entering directory ‘/root/.emacs.d/elpa/json-reformat-20160212.853/’ \f Compiling no file at Tue Aug 28 20:03:18 2018 Leaving directory ‘/root/.emacs.d/elpa/json-mode-20180718.809’ \f Compiling file /root/.emacs.d/elpa/json-mode-20180718.809/json-mode.el at Tue Aug 28 20:03:18 2018 Entering directory ‘/root/.emacs.d/elpa/json-mode-20180718.809/’ \f Compiling no file at Tue Aug 28 20:03:26 2018 Leaving directory ‘/root/.emacs.d/elpa/geiser-20180626.1140’ \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-autodoc.el at Tue Aug 28 20:03:26 2018 Entering directory ‘/root/.emacs.d/elpa/geiser-20180626.1140/’ \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-base.el at Tue Aug 28 20:03:26 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-chez.el at Tue Aug 28 20:03:26 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-chibi.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-chicken.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-company.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-compile.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-completion.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-connection.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-custom.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-debug.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-doc.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-edit.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-eval.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-guile.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-image.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-impl.el at Tue Aug 28 20:03:27 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-log.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-menu.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-mit.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-mode.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-popup.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-racket.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-reload.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-repl.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-syntax.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-table.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-version.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-xref.el at Tue Aug 28 20:03:28 2018 \f Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser.el at Tue Aug 28 20:03:28 2018 \f Compiling no file at Tue Aug 28 20:03:29 2018 Warning (bytecomp): function seq-drop used to take 1+ arguments, now takes 2 Warning (bytecomp): function seq-take used to take 1+ arguments, now takes 2 Warning (bytecomp): function seq-drop-while used to take 2+ arguments, now takes 2 Warning (bytecomp): function seq-empty-p used to take 1+ arguments, now takes 1 Warning (bytecomp): function seq-sort used to take 2+ arguments, now takes 2 Warning (bytecomp): the following functions are not known to be defined: seq-map-indexed, seq-sort-by, seq-random-elt Warning (bytecomp): cl package required at runtime Warning (bytecomp): the following functions are not known to be defined: browse-kill-ring-fit-window, delete-active-region Warning (bytecomp): the following functions are not known to be defined: js2-node-at-point, js2-ast-root-p, js2-node-abs-pos, js2-node-abs-end, js2-node-parent, js2-node-short-name Warning (bytecomp): Unknown slot ‘:output’ Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use ‘eieio-object-p’ instead. [3 times] Warning (bytecomp): attempt to inline ‘ht-empty?’ before it was defined [2 times] Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use ‘eieio-object-p’ instead. Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. [2 times] Warning (bytecomp): Unknown slot ‘:input’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. [4 times] Warning (bytecomp): ‘object-slots’ is an obsolete function (as of 25.1); use ‘eieio-class-slots’ instead. [2 times] Warning (bytecomp): the following functions are not known to be defined: ht?, ht<-alist, ht-empty?, ht-items, marshal-get-class-slot Warning (bytecomp): Unknown slot ‘:level’ Warning (bytecomp): Unknown slot ‘:buffer’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): cl package required at runtime Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:version’ Warning (bytecomp): ‘object-class’ is an obsolete function (as of 24.4); use ‘eieio-object-class’ instead. Warning (bytecomp): Unknown slot ‘:entries’ Warning (bytecomp): Unknown slot ‘:entry-cls’ Warning (bytecomp): Unknown slot ‘:value-cls’ Warning (bytecomp): Unknown slot ‘:value’ Warning (bytecomp): Unknown slot ‘:ttl’ Warning (bytecomp): Unknown slot ‘:timestamp’ Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use ‘eieio-object-p’ instead. Warning (bytecomp): ‘object-class’ is an obsolete function (as of 24.4); use ‘eieio-object-class’ instead. Warning (bytecomp): Unknown slot ‘:timestamp’ Warning (bytecomp): Unknown slot ‘:save-delay’ Warning (bytecomp): ‘object-class’ is an obsolete function (as of 24.4); use ‘eieio-object-class’ instead. Warning (bytecomp): Unknown slot ‘:version’ Warning (bytecomp): Unknown slot ‘:log’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:auth’ Warning (bytecomp): Unknown slot ‘:cache’ Warning (bytecomp): Unknown slot ‘:username’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. [2 times] Warning (bytecomp): Unknown slot ‘:headers’ Warning (bytecomp): Unknown slot ‘:data’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:http-status’ Warning (bytecomp): Unknown slot ‘:-req’ Warning (bytecomp): Unknown slot ‘:page-limit’ Warning (bytecomp): Unknown slot ‘:data-format’ Warning (bytecomp): Unknown slot ‘:base’ Warning (bytecomp): Unknown slot ‘:cache’ Warning (bytecomp): Unknown slot ‘:key’ Warning (bytecomp): Unknown slot ‘:revive’ Warning (bytecomp): Unknown slot ‘:token’ Warning (bytecomp): Unknown slot ‘:data’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:username’ Warning (bytecomp): Unknown slot ‘:req’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:password’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:token’ Warning (bytecomp): Unknown slot ‘:outdated’ Warning (bytecomp): Unknown slot ‘:etag’ Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use ‘eieio-object-p’ instead. Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:url’ Warning (bytecomp): Unknown slot ‘:body’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:content’ Warning (bytecomp): Unknown slot ‘:files’ Warning (bytecomp): Unknown slot ‘:description’ Warning (bytecomp): Unknown slot ‘:public’ Warning (bytecomp): Unknown slot ‘:content’ Warning (bytecomp): Unknown slot ‘:filename’ Warning (bytecomp): Unknown slot ‘:content’ Warning (bytecomp): Unknown slot ‘:id’ [2 times] Warning (bytecomp): Unknown slot ‘:name’ Warning (bytecomp): Unknown slot ‘:color’ Warning (bytecomp): Unknown slot ‘:state’ Warning (bytecomp): Unknown slot ‘:description’ Warning (bytecomp): Unknown slot ‘:due-on’ Warning (bytecomp): Unknown slot ‘:title’ Warning (bytecomp): Unknown slot ‘:assignee’ Warning (bytecomp): Unknown slot ‘:milestone’ Warning (bytecomp): Unknown slot ‘:title’ Warning (bytecomp): Unknown slot ‘:state’ Warning (bytecomp): Unknown slot ‘:number’ Warning (bytecomp): Unknown slot ‘:login’ Warning (bytecomp): Unknown slot ‘:name’ Warning (bytecomp): Unknown slot ‘:id’ [2 times] Warning (bytecomp): Unknown slot ‘:name’ Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of 25.1); use ‘cl-call-next-method’ instead. Warning (bytecomp): Unknown slot ‘:billing-email’ Warning (bytecomp): Unknown slot ‘:blog’ Warning (bytecomp): Unknown slot ‘:company’ Warning (bytecomp): Unknown slot ‘:email’ Warning (bytecomp): Unknown slot ‘:location’ Warning (bytecomp): Unknown slot ‘:name’ Warning (bytecomp): Unknown slot ‘:login’ Warning (bytecomp): Unknown slot ‘:head’ Warning (bytecomp): Unknown slot ‘:base’ Warning (bytecomp): Unknown slot ‘:ref’ Warning (bytecomp): Unknown slot ‘:sha’ Warning (bytecomp): Unknown slot ‘:ref’ Warning (bytecomp): Unknown slot ‘:sha’ Warning (bytecomp): Unknown slot ‘:name’ Warning (bytecomp): Unknown slot ‘:homepage’ Warning (bytecomp): Unknown slot ‘:description’ Warning (bytecomp): Unknown slot ‘:private’ Warning (bytecomp): Unknown slot ‘:name’ Warning (bytecomp): Unknown slot ‘:login’ Warning (bytecomp): Unknown slot ‘:owner’ Warning (bytecomp): Unknown slot ‘:http-status’ [3 times] Warning (bytecomp): Unknown slot ‘:transform’ Warning (bytecomp): Unknown slot ‘:callbacks’ Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use ‘eieio-object-p’ instead. Warning (bytecomp): Unknown slot ‘:data-received’ Warning (bytecomp): Unknown slot ‘:num-retries’ Warning (bytecomp): Unknown slot ‘:method’ Warning (bytecomp): Unknown slot ‘:data’ Warning (bytecomp): Unknown slot ‘:headers’ Warning (bytecomp): Unknown slot ‘:url’ Warning (bytecomp): Unknown slot ‘:query’ Warning (bytecomp): Unknown slot ‘:async’ Warning (bytecomp): Unknown slot ‘:install-callbacks’ Warning (bytecomp): Unknown slot ‘:profile’ Warning (bytecomp): Unknown slot ‘:html-url’ Warning (bytecomp): Unknown slot ‘:id’ Warning (bytecomp): Unknown slot ‘:date’ Warning (bytecomp): Unknown slot ‘:filename’ Warning (bytecomp): Unknown slot ‘:data’ Warning (bytecomp): Unknown slot ‘:user’ Warning (bytecomp): Unknown slot ‘:public’ Warning (bytecomp): Unknown slot ‘:description’ Warning (bytecomp): function ‘every’ from cl package called at runtime Warning (bytecomp): function ‘some’ from cl package called at runtime Warning (bytecomp): function ‘every’ from cl package called at runtime Warning (bytecomp): Unknown slot ‘:files’ Warning (bytecomp): Unknown slot ‘:id’ Warning (bytecomp): Unused lexical variable ‘projectile-cached-project-root’ Warning (bytecomp): Variable ‘projectile-cached-project-root’ declared after its first use Warning (bytecomp): the following functions are not known to be defined: eshell-search-path, ripgrep-regexp Warning (bytecomp): the function ‘magit-toplevel’ is not known to be defined. Warning (bytecomp): looking-back called with 1 argument, but requires 2-3 Warning (bytecomp): Unused lexical variable ‘end-line’ Warning (bytecomp): Unused lexical variable ‘allowed-open’ Warning (bytecomp): Unused lexical variable ‘allowed-close’ Warning (bytecomp): the following functions are not known to be defined: sp--get-kill-end, sp--get-kill-beg Warning (bytecomp): reference to free variable ‘undo-tree-mode’ Warning (bytecomp): Unused lexical variable ‘i’ [4 times] Warning (bytecomp): ‘undo-elt-crosses-region’ is an obsolete function (as of 25.1). [2 times] Warning (bytecomp): Unused lexical variable ‘i’ [7 times] Warning (bytecomp): reference to free variable ‘undo-tree-visualizer-selection-mode’ [2 times] Warning (bytecomp): Unused lexical variable ‘i’ [4 times] Warning (bytecomp): function company--insert-candidate used to take 0+ arguments, now takes 1 Warning (bytecomp): the function ‘geiser-restart-repl’ is not known to be defined. Warning (bytecomp): ‘find-tag-marker-ring’ is an obsolete variable (as of 25.1); use ‘xref-push-marker-stack’ or ‘xref-pop-marker-stack’ instead. [3 times] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-28 18:10 ` gmx @ 2018-08-28 22:38 ` Tim Cross 2018-08-29 1:13 ` gmx 0 siblings, 1 reply; 14+ messages in thread From: Tim Cross @ 2018-08-28 22:38 UTC (permalink / raw) To: gmx; +Cc: emacs-orgmode@gnu.org Just a few comments. While none will solve your immediate issue, they may help track it down. - it looks like your running as root! This is a very bad idea, especially if your inexperienced and still trying to work things out. Highly recommend you create a normal account (possibly with appropriate permissions to run sudo and perform administration tasks). - Those lines look like your system is installing quite a few ELPA packages - this normally only happens once or after you do an upgrade of the elpa packages. Most of those packages are not standard parts of Emacs and while very useful, can severely complicate working out problems. Installing lots of them at once also makes configuration much harder. Given you appear to only have limited Emacs experience, I would highly recommend avoiding the temptation to install lots of interesting packages all at once. A far better approach is to get to know basic Emacs and then, as you gain familiarity, look at what packages are available and then install and try out ones which look like they might actually be useful. At the moment, you have lots of packages which I suspect your not even using or know about. My recommendation would be to start again. Create a user account and just run emacs without installing any packages. Focus on configuring basic Emacs (which comes with org 'built-in'). Ensure you are using a current version of Emacs (preferably Emacs 26.1 or Emacs 25.3). Get basic Org working - don't worry about Korma Script initially, just use basic Latex and verify that is all working first). Once the basics are all working, then start tweaking to suit your needs, but do it incrementally. Another popular alternative, but not one I recommend, is to use one of the pre-defined Emacs setups, such as spacemacs, prelude, Purcell's .emacs etc. This will get you up and runining with an emacs config defined by someone else and force you to work following their workflows, but it is quick. Problem is, when you run into problems, you will be lost and need others to help you out rather than being able to help yourself. HTH Tim gmx <fredstev@gmx.fr> writes: > Le 28/08/2018 à 18:04, Tim Cross a écrit: >> Sorry, I was in a rush before work and sent you the wrong command! > No problem. Thank you for giving me your time. >> >> What you need to do is run emacs --debug-init rather than emacs -q. > > Well. And the answer is... too long (many, many lines) : are ready to > read it (please take a look down) ? > > >> >> Your emacs init is either in the file .emacs in your home directory or >> the file init.el in the .emacs.d directory (assuming your not using >> something like spacemacs or some other 'canned' setup, which may break >> out the config into other files). > I work with Debian 9. >> >> The code you posted i.e. > > > Leaving directory ‘/root/.emacs.d/elpa/avy-20180814.2121’ > \f > Compiling file /root/.emacs.d/elpa/avy-20180814.2121/avy.el at Tue Aug > 28 20:00:34 2018 > Entering directory ‘/root/.emacs.d/elpa/avy-20180814.2121/’ > \f > Compiling no file at Tue Aug 28 20:00:35 2018 > Leaving directory ‘/root/.emacs.d/elpa/ace-window-20180814.1516’ > \f > Compiling file > /root/.emacs.d/elpa/ace-window-20180814.1516/ace-window.el at Tue Aug 28 > 20:00:35 2018 > Entering directory ‘/root/.emacs.d/elpa/ace-window-20180814.1516/’ > \f > Compiling no file at Tue Aug 28 20:00:36 2018 > Leaving directory ‘/root/.emacs.d/elpa/anzu-20161017.1607’ > \f > Compiling file /root/.emacs.d/elpa/anzu-20161017.1607/anzu.el at Tue Aug > 28 20:00:36 2018 > Entering directory ‘/root/.emacs.d/elpa/anzu-20161017.1607/’ > \f > Compiling no file at Tue Aug 28 20:00:37 2018 > Leaving directory ‘/root/.emacs.d/elpa/seq-2.20’ > \f > Compiling file /root/.emacs.d/elpa/seq-2.20/seq-24.el at Tue Aug 28 > 20:00:37 2018 > Entering directory ‘/root/.emacs.d/elpa/seq-2.20/’ > \f > Compiling file /root/.emacs.d/elpa/seq-2.20/seq-25.el at Tue Aug 28 > 20:00:37 2018 > \f > Compiling file /root/.emacs.d/elpa/seq-2.20/seq-pkg.el at Tue Aug 28 > 20:00:37 2018 > \f > Compiling file /root/.emacs.d/elpa/seq-2.20/seq.el at Tue Aug 28 > 20:00:37 2018 > Leaving directory ‘/root/.emacs.d/elpa/seq-2.20/’ > \f > Compiling file /root/.emacs.d/elpa/seq-2.20/tests/seq-tests.el at Tue > Aug 28 20:00:37 2018 > Entering directory ‘/root/.emacs.d/elpa/seq-2.20/tests/’ > \f > Compiling no file at Tue Aug 28 20:00:39 2018 > Leaving directory ‘/root/.emacs.d/elpa/beacon-20180706.1725’ > \f > Compiling file /root/.emacs.d/elpa/beacon-20180706.1725/beacon.el at Tue > Aug 28 20:00:39 2018 > Entering directory ‘/root/.emacs.d/elpa/beacon-20180706.1725/’ > \f > Compiling no file at Tue Aug 28 20:00:40 2018 > Leaving directory ‘/root/.emacs.d/elpa/browse-kill-ring-20171219.1908’ > \f > Compiling file > /root/.emacs.d/elpa/browse-kill-ring-20171219.1908/browse-kill-ring.el > at Tue Aug 28 20:00:40 2018 > Entering directory ‘/root/.emacs.d/elpa/browse-kill-ring-20171219.1908/’ > \f > Compiling no file at Tue Aug 28 20:00:41 2018 > Leaving directory ‘/root/.emacs.d/elpa/crux-20180612.655’ > \f > Compiling file /root/.emacs.d/elpa/crux-20180612.655/crux.el at Tue Aug > 28 20:00:41 2018 > Entering directory ‘/root/.emacs.d/elpa/crux-20180612.655/’ > \f > Compiling no file at Tue Aug 28 20:00:42 2018 > Leaving directory ‘/root/.emacs.d/elpa/makey-20131231.1430’ > \f > Compiling file /root/.emacs.d/elpa/makey-20131231.1430/makey.el at Tue > Aug 28 20:00:42 2018 > Entering directory ‘/root/.emacs.d/elpa/makey-20131231.1430/’ > \f > Compiling no file at Tue Aug 28 20:00:43 2018 > Leaving directory ‘/root/.emacs.d/elpa/discover-my-major-20180606.511’ > \f > Compiling file > /root/.emacs.d/elpa/discover-my-major-20180606.511/discover-my-major.el > at Tue Aug 28 20:00:43 2018 > Entering directory ‘/root/.emacs.d/elpa/discover-my-major-20180606.511/’ > \f > Compiling no file at Tue Aug 28 20:00:44 2018 > Leaving directory ‘/root/.emacs.d/elpa/diff-hl-20180201.1155’ > \f > Compiling file > /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-amend.el at Tue Aug 28 > 20:00:44 2018 > Entering directory ‘/root/.emacs.d/elpa/diff-hl-20180201.1155/’ > \f > Compiling file > /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-dired.el at Tue Aug 28 > 20:00:44 2018 > \f > Compiling file > /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-flydiff.el at Tue Aug > 28 20:00:44 2018 > \f > Compiling file > /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl-margin.el at Tue Aug > 28 20:00:44 2018 > \f > Compiling file /root/.emacs.d/elpa/diff-hl-20180201.1155/diff-hl.el at > Tue Aug 28 20:00:44 2018 > \f > Compiling no file at Tue Aug 28 20:00:46 2018 > Leaving directory ‘/root/.emacs.d/elpa/diminish-20170419.1736’ > \f > Compiling file /root/.emacs.d/elpa/diminish-20170419.1736/diminish.el at > Tue Aug 28 20:00:46 2018 > Entering directory ‘/root/.emacs.d/elpa/diminish-20170419.1736/’ > \f > Compiling no file at Tue Aug 28 20:00:47 2018 > Leaving directory ‘/root/.emacs.d/elpa/easy-kill-20151031.529’ > \f > Compiling file /root/.emacs.d/elpa/easy-kill-20151031.529/easy-kill.el > at Tue Aug 28 20:00:47 2018 > Entering directory ‘/root/.emacs.d/elpa/easy-kill-20151031.529/’ > \f > Compiling no file at Tue Aug 28 20:00:51 2018 > Leaving directory ‘/root/.emacs.d/elpa/editorconfig-20180823.452’ > \f > Compiling file > /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-conf-mode.el > at Tue Aug 28 20:00:51 2018 > Entering directory ‘/root/.emacs.d/elpa/editorconfig-20180823.452/’ > \f > Compiling file > /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-core-handle.el > at Tue Aug 28 20:00:51 2018 > \f > Compiling file > /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-core.el at > Tue Aug 28 20:00:51 2018 > \f > Compiling file > /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig-fnmatch.el at > Tue Aug 28 20:00:51 2018 > \f > Compiling file > /root/.emacs.d/elpa/editorconfig-20180823.452/editorconfig.el at Tue Aug > 28 20:00:51 2018 > \f > Compiling no file at Tue Aug 28 20:00:52 2018 > Leaving directory ‘/root/.emacs.d/elpa/epl-20180205.2049’ > \f > Compiling file /root/.emacs.d/elpa/epl-20180205.2049/epl.el at Tue Aug > 28 20:00:52 2018 > Entering directory ‘/root/.emacs.d/elpa/epl-20180205.2049/’ > \f > Compiling no file at Tue Aug 28 20:00:56 2018 > Leaving directory ‘/root/.emacs.d/elpa/expand-region-20180817.1134’ > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/cc-mode-expansions.el at > Tue Aug 28 20:00:56 2018 > Entering directory ‘/root/.emacs.d/elpa/expand-region-20180817.1134/’ > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/clojure-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/cperl-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/css-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/enh-ruby-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/er-basic-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/erlang-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/expand-region-core.el at > Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/expand-region-custom.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/expand-region.el at Tue > Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/feature-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/html-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/js-mode-expansions.el at > Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/js2-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/jsp-expansions.el at Tue > Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/latex-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/nxml-mode-expansions.el > at Tue Aug 28 20:00:56 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/octave-expansions.el at > Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/python-el-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/python-el-fgallina-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/python-mode-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/ruby-mode-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/sml-mode-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/subword-mode-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/text-mode-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/the-org-mode-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling file > /root/.emacs.d/elpa/expand-region-20180817.1134/web-mode-expansions.el > at Tue Aug 28 20:00:57 2018 > \f > Compiling no file at Tue Aug 28 20:00:57 2018 > Leaving directory ‘/root/.emacs.d/elpa/pkg-info-20150517.1143’ > \f > Compiling file /root/.emacs.d/elpa/pkg-info-20150517.1143/pkg-info.el at > Tue Aug 28 20:01:03 2018 > Entering directory ‘/root/.emacs.d/elpa/pkg-info-20150517.1143/’ > \f > Compiling no file at Tue Aug 28 20:01:04 2018 > Leaving directory ‘/root/.emacs.d/elpa/dash-20180726.1213’ > \f > Compiling file /root/.emacs.d/elpa/dash-20180726.1213/dash.el at Tue Aug > 28 20:01:04 2018 > Entering directory ‘/root/.emacs.d/elpa/dash-20180726.1213/’ > \f > Compiling no file at Tue Aug 28 20:01:08 2018 > Leaving directory ‘/root/.emacs.d/elpa/flycheck-20180823.826’ > \f > Compiling file /root/.emacs.d/elpa/flycheck-20180823.826/flycheck-ert.el > at Tue Aug 28 20:01:08 2018 > Entering directory ‘/root/.emacs.d/elpa/flycheck-20180823.826/’ > \f > Compiling file /root/.emacs.d/elpa/flycheck-20180823.826/flycheck.el at > Tue Aug 28 20:01:08 2018 > \f > Compiling no file at Tue Aug 28 20:01:10 2018 > Leaving directory ‘/root/.emacs.d/elpa/ht-20180129.2234’ > \f > Compiling file /root/.emacs.d/elpa/ht-20180129.2234/ht.el at Tue Aug 28 > 20:01:10 2018 > Entering directory ‘/root/.emacs.d/elpa/ht-20180129.2234/’ > \f > Compiling no file at Tue Aug 28 20:01:12 2018 > Leaving directory ‘/root/.emacs.d/elpa/marshal-20180124.1239’ > \f > Compiling file /root/.emacs.d/elpa/marshal-20180124.1239/marshal.el at > Tue Aug 28 20:01:12 2018 > Entering directory ‘/root/.emacs.d/elpa/marshal-20180124.1239/’ > \f > Compiling no file at Tue Aug 28 20:01:12 2018 > Leaving directory ‘/root/.emacs.d/elpa/logito-20120225.2055’ > \f > Compiling file /root/.emacs.d/elpa/logito-20120225.2055/logito.el at Tue > Aug 28 20:01:12 2018 > Entering directory ‘/root/.emacs.d/elpa/logito-20120225.2055/’ > \f > Compiling no file at Tue Aug 28 20:01:13 2018 > Leaving directory ‘/root/.emacs.d/elpa/pcache-20170105.2214’ > \f > Compiling file /root/.emacs.d/elpa/pcache-20170105.2214/pcache.el at Tue > Aug 28 20:01:13 2018 > Entering directory ‘/root/.emacs.d/elpa/pcache-20170105.2214/’ > \f > Compiling no file at Tue Aug 28 20:01:15 2018 > Leaving directory ‘/root/.emacs.d/elpa/gh-20180308.2138’ > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-api.el at Tue Aug > 28 20:01:15 2018 > Entering directory ‘/root/.emacs.d/elpa/gh-20180308.2138/’ > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-auth.el at Tue > Aug 28 20:01:15 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-cache.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-comments.el at > Tue Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-common.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-gist.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-issue-comments.el > at Tue Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-issues.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-oauth.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-orgs.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-profile.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-pull-comments.el > at Tue Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-pulls.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-repos.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-search.el at Tue > Aug 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-url.el at Tue Aug > 28 20:01:16 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh-users.el at Tue > Aug 28 20:01:17 2018 > \f > Compiling file /root/.emacs.d/elpa/gh-20180308.2138/gh.el at Tue Aug 28 > 20:01:17 2018 > \f > Compiling no file at Tue Aug 28 20:01:23 2018 > Leaving directory ‘/root/.emacs.d/elpa/gist-20171128.406’ > \f > Compiling file /root/.emacs.d/elpa/gist-20171128.406/gist.el at Tue Aug > 28 20:01:23 2018 > Entering directory ‘/root/.emacs.d/elpa/gist-20171128.406/’ > \f > Compiling no file at Tue Aug 28 20:01:24 2018 > Leaving directory ‘/root/.emacs.d/elpa/git-timemachine-20180607.820’ > \f > Compiling file > /root/.emacs.d/elpa/git-timemachine-20180607.820/git-timemachine.el at > Tue Aug 28 20:01:24 2018 > Entering directory ‘/root/.emacs.d/elpa/git-timemachine-20180607.820/’ > \f > Compiling no file at Tue Aug 28 20:01:25 2018 > Leaving directory ‘/root/.emacs.d/elpa/gitconfig-mode-20180318.1956’ > \f > Compiling file > /root/.emacs.d/elpa/gitconfig-mode-20180318.1956/gitconfig-mode.el at > Tue Aug 28 20:01:25 2018 > Entering directory ‘/root/.emacs.d/elpa/gitconfig-mode-20180318.1956/’ > \f > Compiling no file at Tue Aug 28 20:01:26 2018 > Leaving directory ‘/root/.emacs.d/elpa/gitignore-mode-20180318.1956’ > \f > Compiling file > /root/.emacs.d/elpa/gitignore-mode-20180318.1956/gitignore-mode.el at > Tue Aug 28 20:01:26 2018 > Entering directory ‘/root/.emacs.d/elpa/gitignore-mode-20180318.1956/’ > \f > Compiling no file at Tue Aug 28 20:01:28 2018 > Leaving directory ‘/root/.emacs.d/elpa/god-mode-20180117.1134’ > \f > Compiling file > /root/.emacs.d/elpa/god-mode-20180117.1134/god-mode-isearch.el at Tue > Aug 28 20:01:28 2018 > Entering directory ‘/root/.emacs.d/elpa/god-mode-20180117.1134/’ > \f > Compiling file /root/.emacs.d/elpa/god-mode-20180117.1134/god-mode.el at > Tue Aug 28 20:01:28 2018 > \f > Compiling no file at Tue Aug 28 20:01:31 2018 > Leaving directory ‘/root/.emacs.d/elpa/grizzl-20160818.737’ > \f > Compiling file /root/.emacs.d/elpa/grizzl-20160818.737/grizzl.el at Tue > Aug 28 20:01:31 2018 > Entering directory ‘/root/.emacs.d/elpa/grizzl-20160818.737/’ > \f > Compiling no file at Tue Aug 28 20:01:32 2018 > Leaving directory ‘/root/.emacs.d/elpa/guru-mode-20170730.731’ > \f > Compiling file /root/.emacs.d/elpa/guru-mode-20170730.731/guru-mode.el > at Tue Aug 28 20:01:32 2018 > Entering directory ‘/root/.emacs.d/elpa/guru-mode-20170730.731/’ > \f > Compiling no file at Tue Aug 28 20:01:32 2018 > Leaving directory ‘/root/.emacs.d/elpa/hl-todo-20180710.455’ > \f > Compiling file /root/.emacs.d/elpa/hl-todo-20180710.455/hl-todo.el at > Tue Aug 28 20:01:32 2018 > Entering directory ‘/root/.emacs.d/elpa/hl-todo-20180710.455/’ > \f > Compiling no file at Tue Aug 28 20:01:34 2018 > Leaving directory ‘/root/.emacs.d/elpa/imenu-anywhere-20170805.1855’ > \f > Compiling file > /root/.emacs.d/elpa/imenu-anywhere-20170805.1855/imenu-anywhere.el at > Tue Aug 28 20:01:34 2018 > Entering directory ‘/root/.emacs.d/elpa/imenu-anywhere-20170805.1855/’ > \f > Compiling no file at Tue Aug 28 20:01:39 2018 > Leaving directory ‘/root/.emacs.d/elpa/projectile-20180824.2239’ > \f > Compiling file > /root/.emacs.d/elpa/projectile-20180824.2239/projectile.el at Tue Aug 28 > 20:01:39 2018 > Entering directory ‘/root/.emacs.d/elpa/projectile-20180824.2239/’ > \f > Compiling no file at Tue Aug 28 20:01:42 2018 > Leaving directory ‘/root/.emacs.d/elpa/async-20180527.1730’ > \f > Compiling file /root/.emacs.d/elpa/async-20180527.1730/async-bytecomp.el > at Tue Aug 28 20:01:42 2018 > Entering directory ‘/root/.emacs.d/elpa/async-20180527.1730/’ > \f > Compiling file /root/.emacs.d/elpa/async-20180527.1730/async.el at Tue > Aug 28 20:01:42 2018 > \f > Compiling file /root/.emacs.d/elpa/async-20180527.1730/dired-async.el at > Tue Aug 28 20:01:43 2018 > \f > Compiling file /root/.emacs.d/elpa/async-20180527.1730/smtpmail-async.el > at Tue Aug 28 20:01:43 2018 > \f > Compiling no file at Tue Aug 28 20:01:46 2018 > Leaving directory ‘/root/.emacs.d/elpa/with-editor-20180726.2044’ > \f > Compiling file > /root/.emacs.d/elpa/with-editor-20180726.2044/with-editor.el at Tue Aug > 28 20:01:46 2018 > Entering directory ‘/root/.emacs.d/elpa/with-editor-20180726.2044/’ > \f > Compiling no file at Tue Aug 28 20:01:50 2018 > Leaving directory ‘/root/.emacs.d/elpa/magit-popup-20180726.2037’ > \f > Compiling file > /root/.emacs.d/elpa/magit-popup-20180726.2037/magit-popup.el at Tue Aug > 28 20:01:50 2018 > Entering directory ‘/root/.emacs.d/elpa/magit-popup-20180726.2037/’ > \f > Compiling no file at Tue Aug 28 20:01:59 2018 > Leaving directory ‘/root/.emacs.d/elpa/git-commit-20180802.2018’ > \f > Compiling file > /root/.emacs.d/elpa/git-commit-20180802.2018/git-commit.el at Tue Aug 28 > 20:01:59 2018 > Entering directory ‘/root/.emacs.d/elpa/git-commit-20180802.2018/’ > \f > Compiling no file at Tue Aug 28 20:02:18 2018 > Leaving directory ‘/root/.emacs.d/elpa/move-text-20170909.330’ > \f > Compiling file /root/.emacs.d/elpa/move-text-20170909.330/move-text.el > at Tue Aug 28 20:02:18 2018 > Entering directory ‘/root/.emacs.d/elpa/move-text-20170909.330/’ > \f > Compiling no file at Tue Aug 28 20:02:20 2018 > Leaving directory ‘/root/.emacs.d/elpa/operate-on-number-20150707.623’ > \f > Compiling file > /root/.emacs.d/elpa/operate-on-number-20150707.623/operate-on-number.el > at Tue Aug 28 20:02:20 2018 > Entering directory ‘/root/.emacs.d/elpa/operate-on-number-20150707.623/’ > > In magit-merge-into: > magit-merge.el:106:4:Warning: ‘(upstream (magit-get-upstream-branch))’ is a > malformed function > magit-merge.el:111:63:Warning: reference to free variable ‘upstream’ > > In end of data: > magit-merge.el:280:1:Warning: the following functions are not known to be > defined: when-let*, upstream > \f > Compiling no file at Tue Aug 28 20:02:21 2018 > Leaving directory ‘/root/.emacs.d/elpa/rich-minority-20170813.1322’ > \f > Compiling file > /root/.emacs.d/elpa/rich-minority-20170813.1322/rich-minority.el at Tue > Aug 28 20:02:21 2018 > Entering directory ‘/root/.emacs.d/elpa/rich-minority-20170813.1322/’ > \f > Compiling no file at Tue Aug 28 20:02:24 2018 > Leaving directory ‘/root/.emacs.d/elpa/smart-mode-line-20180801.341’ > \f > Compiling file > /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line-dark-theme.el > at Tue Aug 28 20:02:24 2018 > Entering directory ‘/root/.emacs.d/elpa/smart-mode-line-20180801.341/’ > \f > Compiling file > /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line-light-theme.el > at Tue Aug 28 20:02:24 2018 > \f > Compiling file > /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line-respectful-theme.el > at Tue Aug 28 20:02:24 2018 > \f > Compiling file > /root/.emacs.d/elpa/smart-mode-line-20180801.341/smart-mode-line.el at > Tue Aug 28 20:02:24 2018 > \f > Compiling no file at Tue Aug 28 20:02:35 2018 > Leaving directory ‘/root/.emacs.d/elpa/smartparens-20180826.1053’ > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-clojure.el at > Tue Aug 28 20:02:35 2018 > Entering directory ‘/root/.emacs.d/elpa/smartparens-20180826.1053/’ > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-config.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-crystal.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-elixir.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-ess.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-haskell.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-html.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-javascript.el > at Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-latex.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-lua.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-markdown.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-ml.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-org.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-python.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-racket.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-ruby.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-rust.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-scala.el at > Tue Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens-text.el at Tue > Aug 28 20:02:36 2018 > \f > Compiling file > /root/.emacs.d/elpa/smartparens-20180826.1053/smartparens.el at Tue Aug > 28 20:02:36 2018 > \f > Compiling no file at Tue Aug 28 20:02:37 2018 > Leaving directory ‘/root/.emacs.d/elpa/smartrep-20150509.230’ > \f > Compiling file /root/.emacs.d/elpa/smartrep-20150509.230/smartrep.el at > Tue Aug 28 20:02:38 2018 > Entering directory ‘/root/.emacs.d/elpa/smartrep-20150509.230/’ > \f > Compiling no file at Tue Aug 28 20:02:39 2018 > Leaving directory ‘/root/.emacs.d/elpa/undo-tree-0.6.5’ > \f > Compiling file /root/.emacs.d/elpa/undo-tree-0.6.5/undo-tree.el at Tue > Aug 28 20:02:39 2018 > Entering directory ‘/root/.emacs.d/elpa/undo-tree-0.6.5/’ > \f > Compiling no file at Tue Aug 28 20:02:40 2018 > Leaving directory ‘/root/.emacs.d/elpa/volatile-highlights-20160612.155’ > \f > Compiling file > /root/.emacs.d/elpa/volatile-highlights-20160612.155/volatile-highlights.el > at Tue Aug 28 20:02:40 2018 > Entering directory ‘/root/.emacs.d/elpa/volatile-highlights-20160612.155/’ > \f > Compiling no file at Tue Aug 28 20:02:43 2018 > Leaving directory ‘/root/.emacs.d/elpa/which-key-20180621.1938’ > \f > Compiling file /root/.emacs.d/elpa/which-key-20180621.1938/which-key.el > at Tue Aug 28 20:02:43 2018 > Entering directory ‘/root/.emacs.d/elpa/which-key-20180621.1938/’ > \f > Compiling no file at Tue Aug 28 20:02:45 2018 > Leaving directory ‘/root/.emacs.d/elpa/zop-to-char-20160212.1554’ > \f > Compiling file > /root/.emacs.d/elpa/zop-to-char-20160212.1554/zop-to-char.el at Tue Aug > 28 20:02:46 2018 > Entering directory ‘/root/.emacs.d/elpa/zop-to-char-20160212.1554/’ > \f > Compiling no file at Tue Aug 28 20:02:46 2018 > Leaving directory ‘/root/.emacs.d/elpa/ivy-20180822.1824’ > \f > Compiling file /root/.emacs.d/elpa/ivy-20180822.1824/colir.el at Tue Aug > 28 20:02:50 2018 > Entering directory ‘/root/.emacs.d/elpa/ivy-20180822.1824/’ > \f > Compiling file /root/.emacs.d/elpa/ivy-20180822.1824/ivy-overlay.el at > Tue Aug 28 20:02:50 2018 > \f > Compiling file /root/.emacs.d/elpa/ivy-20180822.1824/ivy.el at Tue Aug > 28 20:02:50 2018 > \f > Compiling no file at Tue Aug 28 20:02:53 2018 > Leaving directory ‘/root/.emacs.d/elpa/swiper-20180813.1625’ > \f > Compiling file /root/.emacs.d/elpa/swiper-20180813.1625/swiper.el at Tue > Aug 28 20:02:53 2018 > Entering directory ‘/root/.emacs.d/elpa/swiper-20180813.1625/’ > \f > Compiling no file at Tue Aug 28 20:02:56 2018 > Leaving directory ‘/root/.emacs.d/elpa/counsel-20180820.1500’ > \f > Compiling file /root/.emacs.d/elpa/counsel-20180820.1500/counsel.el at > Tue Aug 28 20:02:56 2018 > Entering directory ‘/root/.emacs.d/elpa/counsel-20180820.1500/’ > \f > Compiling no file at Tue Aug 28 20:03:00 2018 > Leaving directory ‘/root/.emacs.d/elpa/company-20180802.1207’ > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-abbrev.el at Tue Aug > 28 20:03:00 2018 > Entering directory ‘/root/.emacs.d/elpa/company-20180802.1207/’ > \f > Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-bbdb.el > at Tue Aug 28 20:03:00 2018 > \f > Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-capf.el > at Tue Aug 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-clang.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-cmake.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-css.el > at Tue Aug 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-dabbrev-code.el at Tue > Aug 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-dabbrev.el at Tue Aug > 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-eclim.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-elisp.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-etags.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-files.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-gtags.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-ispell.el at Tue Aug > 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-keywords.el at Tue Aug > 28 20:03:01 2018 > \f > Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-nxml.el > at Tue Aug 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-oddmuse.el at Tue Aug > 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-semantic.el at Tue Aug > 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-template.el at Tue Aug > 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-tempo.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file /root/.emacs.d/elpa/company-20180802.1207/company-tng.el > at Tue Aug 28 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-xcode.el at Tue Aug 28 > 20:03:01 2018 > \f > Compiling file > /root/.emacs.d/elpa/company-20180802.1207/company-yasnippet.el at Tue > Aug 28 20:03:02 2018 > \f > Compiling file /root/.emacs.d/elpa/company-20180802.1207/company.el at > Tue Aug 28 20:03:02 2018 > \f > Compiling no file at Tue Aug 28 20:03:02 2018 > Leaving directory ‘/root/.emacs.d/elpa/rainbow-delimiters-20170929.1132’ > \f > Compiling file > /root/.emacs.d/elpa/rainbow-delimiters-20170929.1132/rainbow-delimiters.el > at Tue Aug 28 20:03:03 2018 > Entering directory ‘/root/.emacs.d/elpa/rainbow-delimiters-20170929.1132/’ > \f > Compiling no file at Tue Aug 28 20:03:03 2018 > Leaving directory ‘/root/.emacs.d/elpa/elisp-slime-nav-20160128.1909’ > \f > Compiling file > /root/.emacs.d/elpa/elisp-slime-nav-20160128.1909/elisp-slime-nav.el at > Tue Aug 28 20:03:03 2018 > Entering directory ‘/root/.emacs.d/elpa/elisp-slime-nav-20160128.1909/’ > \f > Compiling no file at Tue Aug 28 20:03:04 2018 > Leaving directory ‘/root/.emacs.d/elpa/rainbow-mode-1.0.1’ > \f > Compiling file /root/.emacs.d/elpa/rainbow-mode-1.0.1/rainbow-mode.el at > Tue Aug 28 20:03:04 2018 > Entering directory ‘/root/.emacs.d/elpa/rainbow-mode-1.0.1/’ > \f > Compiling no file at Tue Aug 28 20:03:09 2018 > Leaving directory ‘/root/.emacs.d/elpa/js2-mode-20180724.801’ > \f > Compiling file > /root/.emacs.d/elpa/js2-mode-20180724.801/js2-imenu-extras.el at Tue Aug > 28 20:03:09 2018 > Entering directory ‘/root/.emacs.d/elpa/js2-mode-20180724.801/’ > \f > Compiling file /root/.emacs.d/elpa/js2-mode-20180724.801/js2-mode.el at > Tue Aug 28 20:03:09 2018 > \f > Compiling file > /root/.emacs.d/elpa/js2-mode-20180724.801/js2-old-indent.el at Tue Aug > 28 20:03:13 2018 > \f > Compiling no file at Tue Aug 28 20:03:17 2018 > Leaving directory ‘/root/.emacs.d/elpa/json-snatcher-20150512.347’ > \f > Compiling file > /root/.emacs.d/elpa/json-snatcher-20150512.347/json-snatcher.el at Tue > Aug 28 20:03:17 2018 > Entering directory ‘/root/.emacs.d/elpa/json-snatcher-20150512.347/’ > \f > Compiling no file at Tue Aug 28 20:03:17 2018 > Leaving directory ‘/root/.emacs.d/elpa/json-reformat-20160212.853’ > \f > Compiling file > /root/.emacs.d/elpa/json-reformat-20160212.853/json-reformat.el at Tue > Aug 28 20:03:17 2018 > Entering directory ‘/root/.emacs.d/elpa/json-reformat-20160212.853/’ > \f > Compiling no file at Tue Aug 28 20:03:18 2018 > Leaving directory ‘/root/.emacs.d/elpa/json-mode-20180718.809’ > \f > Compiling file /root/.emacs.d/elpa/json-mode-20180718.809/json-mode.el > at Tue Aug 28 20:03:18 2018 > Entering directory ‘/root/.emacs.d/elpa/json-mode-20180718.809/’ > \f > Compiling no file at Tue Aug 28 20:03:26 2018 > Leaving directory ‘/root/.emacs.d/elpa/geiser-20180626.1140’ > \f > Compiling file > /root/.emacs.d/elpa/geiser-20180626.1140/geiser-autodoc.el at Tue Aug 28 > 20:03:26 2018 > Entering directory ‘/root/.emacs.d/elpa/geiser-20180626.1140/’ > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-base.el > at Tue Aug 28 20:03:26 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-chez.el > at Tue Aug 28 20:03:26 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-chibi.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file > /root/.emacs.d/elpa/geiser-20180626.1140/geiser-chicken.el at Tue Aug 28 > 20:03:27 2018 > \f > Compiling file > /root/.emacs.d/elpa/geiser-20180626.1140/geiser-company.el at Tue Aug 28 > 20:03:27 2018 > \f > Compiling file > /root/.emacs.d/elpa/geiser-20180626.1140/geiser-compile.el at Tue Aug 28 > 20:03:27 2018 > \f > Compiling file > /root/.emacs.d/elpa/geiser-20180626.1140/geiser-completion.el at Tue Aug > 28 20:03:27 2018 > \f > Compiling file > /root/.emacs.d/elpa/geiser-20180626.1140/geiser-connection.el at Tue Aug > 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-custom.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-debug.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-doc.el at > Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-edit.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-eval.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-guile.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-image.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-impl.el > at Tue Aug 28 20:03:27 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-log.el at > Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-menu.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-mit.el at > Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-mode.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-popup.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-racket.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-reload.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-repl.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-syntax.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-table.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file > /root/.emacs.d/elpa/geiser-20180626.1140/geiser-version.el at Tue Aug 28 > 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser-xref.el > at Tue Aug 28 20:03:28 2018 > \f > Compiling file /root/.emacs.d/elpa/geiser-20180626.1140/geiser.el at Tue > Aug 28 20:03:28 2018 > \f > Compiling no file at Tue Aug 28 20:03:29 2018 > Warning (bytecomp): function seq-drop used to take 1+ arguments, now takes 2 > Warning (bytecomp): function seq-take used to take 1+ arguments, now takes 2 > Warning (bytecomp): function seq-drop-while used to take 2+ arguments, > now takes 2 > Warning (bytecomp): function seq-empty-p used to take 1+ arguments, now > takes 1 > Warning (bytecomp): function seq-sort used to take 2+ arguments, now takes 2 > Warning (bytecomp): the following functions are not known to be defined: > seq-map-indexed, seq-sort-by, seq-random-elt > Warning (bytecomp): cl package required at runtime > Warning (bytecomp): the following functions are not known to be defined: > browse-kill-ring-fit-window, delete-active-region > Warning (bytecomp): the following functions are not known to be defined: > js2-node-at-point, js2-ast-root-p, js2-node-abs-pos, > js2-node-abs-end, js2-node-parent, js2-node-short-name > Warning (bytecomp): Unknown slot ‘:output’ > Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use > ‘eieio-object-p’ instead. [3 times] > Warning (bytecomp): attempt to inline ‘ht-empty?’ before it was defined > [2 times] > Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use > ‘eieio-object-p’ instead. > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. [2 times] > Warning (bytecomp): Unknown slot ‘:input’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. [4 times] > Warning (bytecomp): ‘object-slots’ is an obsolete function (as of 25.1); > use ‘eieio-class-slots’ instead. [2 times] > Warning (bytecomp): the following functions are not known to be defined: > ht?, ht<-alist, > ht-empty?, ht-items, marshal-get-class-slot > Warning (bytecomp): Unknown slot ‘:level’ > Warning (bytecomp): Unknown slot ‘:buffer’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): cl package required at runtime > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:version’ > Warning (bytecomp): ‘object-class’ is an obsolete function (as of 24.4); > use ‘eieio-object-class’ instead. > Warning (bytecomp): Unknown slot ‘:entries’ > Warning (bytecomp): Unknown slot ‘:entry-cls’ > Warning (bytecomp): Unknown slot ‘:value-cls’ > Warning (bytecomp): Unknown slot ‘:value’ > Warning (bytecomp): Unknown slot ‘:ttl’ > Warning (bytecomp): Unknown slot ‘:timestamp’ > Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use > ‘eieio-object-p’ instead. > Warning (bytecomp): ‘object-class’ is an obsolete function (as of 24.4); > use ‘eieio-object-class’ instead. > Warning (bytecomp): Unknown slot ‘:timestamp’ > Warning (bytecomp): Unknown slot ‘:save-delay’ > Warning (bytecomp): ‘object-class’ is an obsolete function (as of 24.4); > use ‘eieio-object-class’ instead. > Warning (bytecomp): Unknown slot ‘:version’ > Warning (bytecomp): Unknown slot ‘:log’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:auth’ > Warning (bytecomp): Unknown slot ‘:cache’ > Warning (bytecomp): Unknown slot ‘:username’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. [2 times] > Warning (bytecomp): Unknown slot ‘:headers’ > Warning (bytecomp): Unknown slot ‘:data’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:http-status’ > Warning (bytecomp): Unknown slot ‘:-req’ > Warning (bytecomp): Unknown slot ‘:page-limit’ > Warning (bytecomp): Unknown slot ‘:data-format’ > Warning (bytecomp): Unknown slot ‘:base’ > Warning (bytecomp): Unknown slot ‘:cache’ > Warning (bytecomp): Unknown slot ‘:key’ > Warning (bytecomp): Unknown slot ‘:revive’ > Warning (bytecomp): Unknown slot ‘:token’ > Warning (bytecomp): Unknown slot ‘:data’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:username’ > Warning (bytecomp): Unknown slot ‘:req’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:password’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:token’ > Warning (bytecomp): Unknown slot ‘:outdated’ > Warning (bytecomp): Unknown slot ‘:etag’ > Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use > ‘eieio-object-p’ instead. > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:url’ > Warning (bytecomp): Unknown slot ‘:body’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:content’ > Warning (bytecomp): Unknown slot ‘:files’ > Warning (bytecomp): Unknown slot ‘:description’ > Warning (bytecomp): Unknown slot ‘:public’ > Warning (bytecomp): Unknown slot ‘:content’ > Warning (bytecomp): Unknown slot ‘:filename’ > Warning (bytecomp): Unknown slot ‘:content’ > Warning (bytecomp): Unknown slot ‘:id’ [2 times] > Warning (bytecomp): Unknown slot ‘:name’ > Warning (bytecomp): Unknown slot ‘:color’ > Warning (bytecomp): Unknown slot ‘:state’ > Warning (bytecomp): Unknown slot ‘:description’ > Warning (bytecomp): Unknown slot ‘:due-on’ > Warning (bytecomp): Unknown slot ‘:title’ > Warning (bytecomp): Unknown slot ‘:assignee’ > Warning (bytecomp): Unknown slot ‘:milestone’ > Warning (bytecomp): Unknown slot ‘:title’ > Warning (bytecomp): Unknown slot ‘:state’ > Warning (bytecomp): Unknown slot ‘:number’ > Warning (bytecomp): Unknown slot ‘:login’ > Warning (bytecomp): Unknown slot ‘:name’ > Warning (bytecomp): Unknown slot ‘:id’ [2 times] > Warning (bytecomp): Unknown slot ‘:name’ > Warning (bytecomp): ‘call-next-method’ is an obsolete function (as of > 25.1); use ‘cl-call-next-method’ instead. > Warning (bytecomp): Unknown slot ‘:billing-email’ > Warning (bytecomp): Unknown slot ‘:blog’ > Warning (bytecomp): Unknown slot ‘:company’ > Warning (bytecomp): Unknown slot ‘:email’ > Warning (bytecomp): Unknown slot ‘:location’ > Warning (bytecomp): Unknown slot ‘:name’ > Warning (bytecomp): Unknown slot ‘:login’ > Warning (bytecomp): Unknown slot ‘:head’ > Warning (bytecomp): Unknown slot ‘:base’ > Warning (bytecomp): Unknown slot ‘:ref’ > Warning (bytecomp): Unknown slot ‘:sha’ > Warning (bytecomp): Unknown slot ‘:ref’ > Warning (bytecomp): Unknown slot ‘:sha’ > Warning (bytecomp): Unknown slot ‘:name’ > Warning (bytecomp): Unknown slot ‘:homepage’ > Warning (bytecomp): Unknown slot ‘:description’ > Warning (bytecomp): Unknown slot ‘:private’ > Warning (bytecomp): Unknown slot ‘:name’ > Warning (bytecomp): Unknown slot ‘:login’ > Warning (bytecomp): Unknown slot ‘:owner’ > Warning (bytecomp): Unknown slot ‘:http-status’ [3 times] > Warning (bytecomp): Unknown slot ‘:transform’ > Warning (bytecomp): Unknown slot ‘:callbacks’ > Warning (bytecomp): ‘object-p’ is an obsolete function (as of 25.1); use > ‘eieio-object-p’ instead. > Warning (bytecomp): Unknown slot ‘:data-received’ > Warning (bytecomp): Unknown slot ‘:num-retries’ > Warning (bytecomp): Unknown slot ‘:method’ > Warning (bytecomp): Unknown slot ‘:data’ > Warning (bytecomp): Unknown slot ‘:headers’ > Warning (bytecomp): Unknown slot ‘:url’ > Warning (bytecomp): Unknown slot ‘:query’ > Warning (bytecomp): Unknown slot ‘:async’ > Warning (bytecomp): Unknown slot ‘:install-callbacks’ > Warning (bytecomp): Unknown slot ‘:profile’ > Warning (bytecomp): Unknown slot ‘:html-url’ > Warning (bytecomp): Unknown slot ‘:id’ > Warning (bytecomp): Unknown slot ‘:date’ > Warning (bytecomp): Unknown slot ‘:filename’ > Warning (bytecomp): Unknown slot ‘:data’ > Warning (bytecomp): Unknown slot ‘:user’ > Warning (bytecomp): Unknown slot ‘:public’ > Warning (bytecomp): Unknown slot ‘:description’ > Warning (bytecomp): function ‘every’ from cl package called at runtime > Warning (bytecomp): function ‘some’ from cl package called at runtime > Warning (bytecomp): function ‘every’ from cl package called at runtime > Warning (bytecomp): Unknown slot ‘:files’ > Warning (bytecomp): Unknown slot ‘:id’ > Warning (bytecomp): Unused lexical variable ‘projectile-cached-project-root’ > Warning (bytecomp): Variable ‘projectile-cached-project-root’ declared > after its first use > Warning (bytecomp): the following functions are not known to be defined: > eshell-search-path, ripgrep-regexp > Warning (bytecomp): the function ‘magit-toplevel’ is not known to be > defined. > Warning (bytecomp): looking-back called with 1 argument, but requires 2-3 > Warning (bytecomp): Unused lexical variable ‘end-line’ > Warning (bytecomp): Unused lexical variable ‘allowed-open’ > Warning (bytecomp): Unused lexical variable ‘allowed-close’ > Warning (bytecomp): the following functions are not known to be defined: > sp--get-kill-end, sp--get-kill-beg > Warning (bytecomp): reference to free variable ‘undo-tree-mode’ > Warning (bytecomp): Unused lexical variable ‘i’ [4 times] > Warning (bytecomp): ‘undo-elt-crosses-region’ is an obsolete function > (as of 25.1). [2 times] > Warning (bytecomp): Unused lexical variable ‘i’ [7 times] > Warning (bytecomp): reference to free variable > ‘undo-tree-visualizer-selection-mode’ [2 times] > Warning (bytecomp): Unused lexical variable ‘i’ [4 times] > Warning (bytecomp): function company--insert-candidate used to take 0+ > arguments, now takes 1 > Warning (bytecomp): the function ‘geiser-restart-repl’ is not known to > be defined. > Warning (bytecomp): ‘find-tag-marker-ring’ is an obsolete variable (as > of 25.1); use ‘xref-push-marker-stack’ or ‘xref-pop-marker-stack’ > instead. [3 times] -- Tim Cross ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-28 22:38 ` Tim Cross @ 2018-08-29 1:13 ` gmx 0 siblings, 0 replies; 14+ messages in thread From: gmx @ 2018-08-29 1:13 UTC (permalink / raw) To: emacs-orgmode@gnu.org Thank you very much for that very complete answer and advice. This will allow me to learn better how to use emacs (and org-mode). Frédéric Le 29/08/2018 à 00:38, Tim Cross a écrit : > Just a few comments. While none will solve your immediate issue, they > may help track it down. > > - it looks like your running as root! This is a very bad idea, > especially if your inexperienced and still trying to work things > out. Highly recommend you create a normal account (possibly with > appropriate permissions to run sudo and perform administration tasks). > > - Those lines look like your system is installing quite a few ELPA > packages - this normally only happens once or after you do an upgrade > of the elpa packages. > > Most of those packages are not standard parts of Emacs and while very > useful, can severely complicate working out problems. Installing lots of > them at once also makes configuration much harder. Given you appear to > only have limited Emacs experience, I would highly recommend avoiding > the temptation to install lots of interesting packages all at once. A > far better approach is to get to know basic Emacs and then, as you gain > familiarity, look at what packages are available and then install and > try out ones which look like they might actually be useful. At the > moment, you have lots of packages which I suspect your not even using or > know about. > > My recommendation would be to start again. Create a user account and > just run emacs without installing any packages. Focus on configuring > basic Emacs (which comes with org 'built-in'). Ensure you are using a > current version of Emacs (preferably Emacs 26.1 or Emacs 25.3). Get > basic Org working - don't worry about Korma Script initially, just use > basic Latex and verify that is all working first). Once the basics are > all working, then start tweaking to suit your needs, but do it > incrementally. > > Another popular alternative, but not one I recommend, is to use one of > the pre-defined Emacs setups, such as spacemacs, prelude, Purcell's > .emacs etc. This will get you up and runining with an emacs config > defined by someone else and force you to work following their workflows, > but it is quick. Problem is, when you run into problems, you will be > lost and need others to help you out rather than being able to help > yourself. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-28 16:04 ` Tim Cross 2018-08-28 18:10 ` gmx @ 2018-08-28 21:59 ` gmx 1 sibling, 0 replies; 14+ messages in thread From: gmx @ 2018-08-28 21:59 UTC (permalink / raw) To: emacs-orgmode@gnu.org Oh, oh. I've opening a new emacs file, and this message waits me : Warning (initialization): An error occurred while loading ‘/home/frederic/.emacs’: Symbol's value as variable is void: + To ensure normal operation, you should investigate and remove the cause of the error in your initialization file. Start Emacs with the ‘--debug-init’ option to view a complete error backtrace. Well. I deleted this +, and... Everything's working perfectly! That stupid + blocked everything. I'm sorry I didn't see it. Thank you again, Tim, for your patience in answering me. Problem solved (shame on me...). Frédéric Le 28/08/2018 à 18:04, Tim Cross a écrit : > Sorry, I was in a rush before work and sent you the wrong command! > > What you need to do is run emacs --debug-init rather than emacs -q. > > Your emacs init is either in the file .emacs in your home directory or > the file init.el in the .emacs.d directory (assuming your not using > something like spacemacs or some other 'canned' setup, which may break > out the config into other files). > > The code you posted i.e. > >>>> ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; >>>> ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html >>>> >>>> ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode >>>> (require 'ox-latex) >>>> (unless (boundp 'org-latex-classes) >>>> (setq org-latex-classes nil)) >>>> + >>>> (add-to-list 'org-latex-classes >>>> '("article" >>>> "\\documentclass{article}" >>>> ("\\section{%s}" . "\\section*{%s}"))) >>>> >>>> ;; Pour configurer les subdivisions des articles >>>> (add-to-list 'org-latex-classes >>>> '("article" >>>> "\\documentclass{article}" >>>> ("\\section{%s}" . "\\section*{%s}") >>>> ("\\subsection{%s}" . "\\subsection*{%s}") >>>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) >>>> >>>> ;; Pour configurer les subdivisions de la classe book (indiquer : >>>> #+LaTeX_CLASS: book) >>>> (with-eval-after-load "ox-latex" >>>> (add-to-list 'org-latex-classes >>>> '("book" >>>> "\\documentclass{book}" >>>> ("\\part{%s}" . "\\part*{%s}") >>>> ("\\chapter{%s}" . "\\chapter*{%s}") >>>> ("\\section{%s}" . "\\section*{%s}") >>>> ("\\subsection{%s}" . "\\subsection*{%s}") >>>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) >>>> >>>> ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: >>>> koma-article >>>> (with-eval-after-load "ox-latex" >>>> (add-to-list 'org-latex-classes >>>> '("koma-article" "\\documentclass{scrartcl}" >>>> ("\\section{%s}" . "\\section*{%s}") >>>> ("\\subsection{%s}" . "\\subsection*{%s}") >>>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) > doesn't look quite right. It should be in your init file i.e. .emacs or > .emacs.d/init.el and it needs to be correctly formed elisp statements, > The --debug-init will check this. Looking at it, you seem to have a > spurious '+' character, but there may be other problems as well. > > There is a customize interface you can use to add the korma classes, > which may be easier than writing elisp if your not familiar with > that. Do M-x customize-group <ret> org and have a look around. > > What I use in my init is > > (setq org-latex-classes > '(("beamer" > "\\documentclass[presentation]{beamer}" > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) > ("hitec-article" > "\\documentclass[12pt]{hitec} > [DEFAULT-PACKAGES] > [PACKAGES] > [NO-EXTRA] > \\settextfraction{0.95}\n" > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}") > ("\\paragraph{%s}" . "\\paragraph*{%s}") > ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) > ("article" "\\documentclass[11pt]{article}" > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}") > ("\\paragraph{%s}" . "\\paragraph*{%s}") > ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) > ("korma-article" "\\documentclass[11pt]{scrartcl}" > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}") > ("\\paragraph{%s}" . "\\paragraph*{%s}") > ("\\subparagraph{%s}" . "\\subparagraph*{%s}")) > ("report" > "\\documentclass[11pt]{report}" > ("\\part{%s}" . "\\part*{%s}") > ("\\chapter{%s}" . "\\chapter*{%s}") > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) > ("korma-report" > "\\documentclass[11pt]{scrreport}" > ("\\part{%s}" . "\\part*{%s}") > ("\\chapter{%s}" . "\\chapter*{%s}") > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) > ("korma-book" > "\\documentclass[11pt]{scrbook}" > ("\\part{%s}" . "\\part*{%s}") > ("\\chapter{%s}" . "\\chapter*{%s}") > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}")) > ("book" > "\\documentclass[11pt]{book}" > ("\\part{%s}" . "\\part*{%s}") > ("\\chapter{%s}" . "\\chapter*{%s}") > ("\\section{%s}" . "\\section*{%s}") > ("\\subsection{%s}" . "\\subsection*{%s}") > ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) > > gmx <fredstev@gmx.fr> writes: > >> Thanks a lot for your answer, Tim. I entered the emacs -q command, which >> started emacs. The only message from the Terminal (before launching >> emacs) is this: >> >> (emacs:3687): GConf-WARNING **: Client failed to connect to the D-BUS >> daemon: >> Did not receive a reply. Possible causes include: the remote application >> did not send a reply, the message bus security policy blocked the reply, >> the reply timeout expired, or the network connection was broken. >> >> But no real problem. >> >> I did't find the init file : where is it, please ? >> >> Frédéric >> >> >> Le 28/08/2018 à 00:00, Tim Cross a écrit: >>> If that is a copy of what is in your .emacs or init.el file, then I >>> think you have a number of errors. Try running emacs -q and see if emacs >>> reports errors in your init file. >>> >>> Tim >>> >>> gmx <fredstev@gmx.fr> writes: >>> >>>> I forgot the >>>> >>>> Le 27/08/2018 à 21:51, gmx a écrit: >>>>> Hello, >>>>> >>>>> I'm trying to use the koma class. I found a configuration of the.emacs >>>>> file, in the manual and in a Stack Exchange post >>>>> (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). >>>>> >>>>> >>>>> I open a new .org file, and I declare: >>>>> #+TITLE: MyTitle >>>>> #+DATE: date >>>>> #+LANGUAGE: fr >>>>> #+LaTeX_CLASS: koma-article >>>>> >>>>> When I want to export my work in .pdf, I get the following answer: >>>>> Unknown LaTeX class 'koma-article'. >>>>> >>>>> What to do? >>>>> Thank you for your advice >>>>> >>>>> Frédéric (real newbie with org-mode, but I do my best) >>>>> >>>> contents of the file. Ready ? >>>> >>>> >>>> >>>> ;; Added by Package.el. This must come before configurations of >>>> ;; installed packages. Don't delete this line. If you don't want it, >>>> ;; just comment it out by adding a semicolon to the start of the line. >>>> ;; You may delete these explanatory comments. >>>> (package-initialize) >>>> >>>> (custom-set-variables >>>> ;; custom-set-variables was added by Custom. >>>> ;; If you edit it by hand, you could mess it up, so be careful. >>>> ;; Your init file should contain only one such instance. >>>> ;; If there is more than one, they won't work right. >>>> '(ansi-color-faces-vector >>>> [default default default italic underline success warning error]) >>>> '(ansi-color-names-vector >>>> ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" >>>> "#8cc4ff" "#eeeeec"]) >>>> '(current-language-environment "UTF-8") >>>> '(custom-enabled-themes (quote (deeper-blue))) >>>> '(display-battery-mode t)) >>>> (custom-set-faces >>>> ;; custom-set-faces was added by Custom. >>>> ;; If you edit it by hand, you could mess it up, so be careful. >>>> ;; Your init file should contain only one such instance. >>>> ;; If there is more than one, they won't work right. >>>> ) >>>> (put 'upcase-region 'disabled nil) >>>> >>>> >>>> ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; >>>> ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html >>>> >>>> ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode >>>> (require 'ox-latex) >>>> (unless (boundp 'org-latex-classes) >>>> (setq org-latex-classes nil)) >>>> + >>>> (add-to-list 'org-latex-classes >>>> '("article" >>>> "\\documentclass{article}" >>>> ("\\section{%s}" . "\\section*{%s}"))) >>>> >>>> ;; Pour configurer les subdivisions des articles >>>> (add-to-list 'org-latex-classes >>>> '("article" >>>> "\\documentclass{article}" >>>> ("\\section{%s}" . "\\section*{%s}") >>>> ("\\subsection{%s}" . "\\subsection*{%s}") >>>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) >>>> >>>> ;; Pour configurer les subdivisions de la classe book (indiquer : >>>> #+LaTeX_CLASS: book) >>>> (with-eval-after-load "ox-latex" >>>> (add-to-list 'org-latex-classes >>>> '("book" >>>> "\\documentclass{book}" >>>> ("\\part{%s}" . "\\part*{%s}") >>>> ("\\chapter{%s}" . "\\chapter*{%s}") >>>> ("\\section{%s}" . "\\section*{%s}") >>>> ("\\subsection{%s}" . "\\subsection*{%s}") >>>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) >>>> >>>> ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: >>>> koma-article >>>> (with-eval-after-load "ox-latex" >>>> (add-to-list 'org-latex-classes >>>> '("koma-article" "\\documentclass{scrartcl}" >>>> ("\\section{%s}" . "\\section*{%s}") >>>> ("\\subsection{%s}" . "\\subsection*{%s}") >>>> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >>>> ("\\paragraph{%s}" . "\\paragraph*{%s}") >>>> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-27 22:00 ` Tim Cross 2018-08-28 1:56 ` gmx @ 2018-08-28 19:44 ` Nick Dokos 1 sibling, 0 replies; 14+ messages in thread From: Nick Dokos @ 2018-08-28 19:44 UTC (permalink / raw) To: emacs-orgmode Tim Cross <theophilusx@gmail.com> writes: > If that is a copy of what is in your .emacs or init.el file, then I > think you have a number of errors. Try running emacs -q and see if emacs > reports errors in your init file. > Did you mean `emacs --debug-init'? `emacs -q' will skip the user file. > Tim > > gmx <fredstev@gmx.fr> writes: > >> I forgot the >> >> Le 27/08/2018 à 21:51, gmx a écrit: >>> Hello, >>> >>> I'm trying to use the koma class. I found a configuration of the.emacs >>> file, in the manual and in a Stack Exchange post >>> (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). >>> >>> >>> I open a new .org file, and I declare: >>> #+TITLE: MyTitle >>> #+DATE: date >>> #+LANGUAGE: fr >>> #+LaTeX_CLASS: koma-article >>> >>> When I want to export my work in .pdf, I get the following answer: >>> Unknown LaTeX class 'koma-article'. >>> >>> What to do? >>> Thank you for your advice >>> >>> Frédéric (real newbie with org-mode, but I do my best) >>> >> contents of the file. Ready ? >> >> >> >> ;; Added by Package.el. This must come before configurations of >> ;; installed packages. Don't delete this line. If you don't want it, >> ;; just comment it out by adding a semicolon to the start of the line. >> ;; You may delete these explanatory comments. >> (package-initialize) >> >> (custom-set-variables >> ;; custom-set-variables was added by Custom. >> ;; If you edit it by hand, you could mess it up, so be careful. >> ;; Your init file should contain only one such instance. >> ;; If there is more than one, they won't work right. >> '(ansi-color-faces-vector >> [default default default italic underline success warning error]) >> '(ansi-color-names-vector >> ["#212526" "#ff4b4b" "#b4fa70" "#fce94f" "#729fcf" "#e090d7" >> "#8cc4ff" "#eeeeec"]) >> '(current-language-environment "UTF-8") >> '(custom-enabled-themes (quote (deeper-blue))) >> '(display-battery-mode t)) >> (custom-set-faces >> ;; custom-set-faces was added by Custom. >> ;; If you edit it by hand, you could mess it up, so be careful. >> ;; Your init file should contain only one such instance. >> ;; If there is more than one, they won't work right. >> ) >> (put 'upcase-region 'disabled nil) >> >> >> ;;;;;;;;;;;;; CONFIGURATION POUR UTILISER LATEX ;;;;;;;;;;;;;; >> ;; Source : https://orgmode.org/worg/org-tutorials/org-latex-export.html >> >> ;; Pour pouvoir utiliser LaTeX dans un doc. org-mode >> (require 'ox-latex) >> (unless (boundp 'org-latex-classes) >> (setq org-latex-classes nil)) >> + >> (add-to-list 'org-latex-classes >> '("article" >> "\\documentclass{article}" >> ("\\section{%s}" . "\\section*{%s}"))) >> >> ;; Pour configurer les subdivisions des articles >> (add-to-list 'org-latex-classes >> '("article" >> "\\documentclass{article}" >> ("\\section{%s}" . "\\section*{%s}") >> ("\\subsection{%s}" . "\\subsection*{%s}") >> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >> ("\\paragraph{%s}" . "\\paragraph*{%s}") >> ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) >> >> ;; Pour configurer les subdivisions de la classe book (indiquer : >> #+LaTeX_CLASS: book) >> (with-eval-after-load "ox-latex" >> (add-to-list 'org-latex-classes >> '("book" >> "\\documentclass{book}" >> ("\\part{%s}" . "\\part*{%s}") >> ("\\chapter{%s}" . "\\chapter*{%s}") >> ("\\section{%s}" . "\\section*{%s}") >> ("\\subsection{%s}" . "\\subsection*{%s}") >> ("\\subsubsection{%s}" . "\\subsubsection*{%s}")))) >> >> ;; Pour utiliser la classe koma-script. Indiquer : #+LaTeX_CLASS: >> koma-article >> (with-eval-after-load "ox-latex" >> (add-to-list 'org-latex-classes >> '("koma-article" "\\documentclass{scrartcl}" >> ("\\section{%s}" . "\\section*{%s}") >> ("\\subsection{%s}" . "\\subsection*{%s}") >> ("\\subsubsection{%s}" . "\\subsubsection*{%s}") >> ("\\paragraph{%s}" . "\\paragraph*{%s}") >> ("\\subparagraph{%s}" . "\\subparagraph*{%s}")))) -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Org-mode and koma-script 2018-08-27 19:51 ` Org-mode and koma-script gmx 2018-08-27 19:57 ` gmx @ 2018-08-28 19:50 ` Nick Dokos 1 sibling, 0 replies; 14+ messages in thread From: Nick Dokos @ 2018-08-28 19:50 UTC (permalink / raw) To: emacs-orgmode gmx <fredstev@gmx.fr> writes: > Hello, > > I'm trying to use the koma class. I found a configuration of the.emacs > file, in the manual and in a Stack Exchange post > (https://tex.stackexchange.com/questions/364914/using-koma-script-article-with-org-mode). > > > I open a new .org file, and I declare: > > #+TITLE: MyTitle > #+DATE: date > > #+LANGUAGE: fr > #+LaTeX_CLASS: koma-article > > When I want to export my work in .pdf, I get the following answer: > Unknown LaTeX class 'koma-article'. > > What to do? Most likely, you have an error in your .emacs file. You can check that by seeing whether you successfully modified the org-latex-classes variable: M-x v org-latex-classes RET Chances are that it does not contain an entry for `koma-article', because your .emacs was not read completely: emacs encountered an error while processing it and gave up on processing the rest of it. -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: org-mode in French 2017-11-12 20:40 org-mode in French gmx 2017-11-12 21:00 ` Thomas S. Dye @ 2017-11-14 7:57 ` Rasmus 1 sibling, 0 replies; 14+ messages in thread From: Rasmus @ 2017-11-14 7:57 UTC (permalink / raw) To: emacs-orgmode gmx <fredstev@gmx.fr> writes: > Hello, > I've been using Org-mode for several months now, with pleasure. > However, I would like the .tex files use some packages (babel, > french...), a particular koma-script class (scrartcl), etc., which > allow me to release a. pdf file with French typographical standards. > > How to do this? For language support, you could do something like (setq org-latex-packages-alist '(("AUTO" "babel" nil ("pdflatex")) ("AUTO" "polyglossia" nil ("xelatex" "lualatex")))) And use the "#+language: fr" keyword to set the document to French. Rasmus -- Hooray! ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2018-08-29 1:14 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-11-12 20:40 org-mode in French gmx 2017-11-12 21:00 ` Thomas S. Dye 2018-08-27 19:51 ` Org-mode and koma-script gmx 2018-08-27 19:57 ` gmx 2018-08-27 22:00 ` Tim Cross 2018-08-28 1:56 ` gmx 2018-08-28 16:04 ` Tim Cross 2018-08-28 18:10 ` gmx 2018-08-28 22:38 ` Tim Cross 2018-08-29 1:13 ` gmx 2018-08-28 21:59 ` gmx 2018-08-28 19:44 ` Nick Dokos 2018-08-28 19:50 ` Nick Dokos 2017-11-14 7:57 ` org-mode in French Rasmus
Code repositories for project(s) associated with this public inbox https://git.savannah.gnu.org/cgit/emacs/org-mode.git This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).