What is the correct way to join multiple path components into a single complete path in emacs lisp?
Reading through the manual for Directory Names, you’ll find the answer: Given a directory name, you can combine it with a relative file name using concat: (concat dirname relfile) Be sure to verify that the file name is relative before doing that. If you use an absolute file name, the results could be syntactically invalid … Read more