UIで作成したカスタマイズに明示的なファイルを設定しました。名前はcustom.el
です。現在、私はこのファイルが存在しない場合は、このスニペットを使用して作成します。elispで空のファイルを作成するには?
(defconst custom-file (expand-file-name "custom.el" user-emacs-directory))
(unless (file-exists-p custom-file)
(shell-command (concat "touch " custom-file)))
醜いシェルコマンドでtouch
があり、他のelispの関数はこれを行うことができますか?
ほとんど複製:http://stackoverflow.com/q/2592095/596361 –