Go to the first, previous, next, last section, table of contents.

load-path を変更するにはどうしますか?

一般に load-path は順次 *追加* しますが, /XXX/YYY ディレクトリを追加するには次のようにします:

  (setq load-path (append load-path '("/XXX/YYY/")))

ホーム・ディレクトリからの相対パスを指定するときは次のようにします:

  (setq load-path (append load-path (list (expand-file-name "~/YYY/"))))

Go to the first, previous, next, last section, table of contents.