Hi, Yes you were right > This error means emacs cannot find the "add-to-path" function. Maybe > you want "add-to-list"? Now I get an other error message and I don’t know why. > Debugger entered--Lisp error: (file-missing "Cannot open load file" "Datei oder Verzeichnis nicht gefunden" "asciidoc.el") > load("asciidoc.el") > load-with-code-conversion("/home/gfp/.config/emacs/init.el" "/home/gfp/.config/emacs/init.el" t t) > load("/home/gfp/.config/emacs/init" noerror nomessage) > startup--load-user-init-file(#f(compiled-function () #) #f(compiled-function () #) t) > command-line() > normal-top-level() I put the file: "asciidoc.el" in my direcory: /home/gfp/.config/emacs/Zusatzpakete/selbstinstalliert/Asciidoc/ and in my init.el file it looks like this: (load "asciidoc.el") (add-to-list 'load-path "/home/gfp/.config/emacs/Zusatzpakete/selbstinstalliert/Asciidoc/") So, where is my mistake? Why emacs can’t find my file? Second question If there is already an error showing up in the backtrace buffer can I test an other expression in the scratch buffer with hitting C-j? It seems to me that the first backtrace blocks everything and I have to get right this one. How can I get rid of the first backtrace to check other expressions? Kind regards Gottfried Am 26.02.23 um 02:36 schrieb David Masterson: > Gottfried writes: > >> Hi, >> >> thank you very much for helping me. >> ------------------------------------------------------ >> I did all of that you proposed. >> -------------------------------------------------------- >> and I can open the markdown-mode >> -------------------------------------------------------- >> but >> I get this message in opening emacs: >> >> Debugger entered--Lisp error: (void-function add-to-path) > > This error means emacs cannot find the "add-to-path" function. Maybe > you want "add-to-list"? > > You can (sort of) test an Elisp expression (ie. something surrounded by > parenthesis) by putting it in the *scratch* buffer (see C-x C-b) and > hitting C-j after the last close paren. If it works, copy it to your > init file and restart Emacs. > --