Browse Source

Minor doc fixes

custom
Bozhidar Batsov 13 years ago
parent
commit
480170f7a9
  1. 12
      init.el
  2. 2
      modules/prelude-erlang.el

12
init.el

@ -42,12 +42,13 @@
(defvar prelude-modules-dir (expand-file-name "modules" prelude-dir) (defvar prelude-modules-dir (expand-file-name "modules" prelude-dir)
"This directory houses all of the built-in Prelude modules.") "This directory houses all of the built-in Prelude modules.")
(defvar prelude-personal-dir (expand-file-name "personal" prelude-dir) (defvar prelude-personal-dir (expand-file-name "personal" prelude-dir)
"Users of Emacs Prelude are encouraged to keep their personal configuration
changes in this directory. All Emacs Lisp files there are loaded automatically
"This directory is for your personal configuration.
Users of Emacs Prelude are encouraged to keep their personal configuration
changes in this directory. All Emacs Lisp files there are loaded automatically
by Prelude.") by Prelude.")
(defvar prelude-vendor-dir (expand-file-name "vendor" prelude-dir) (defvar prelude-vendor-dir (expand-file-name "vendor" prelude-dir)
"This directory house Emacs Lisp packages that are not yet available in
ELPA (or MELPA).")
"This directory houses packages that are not yet available in ELPA (or MELPA).")
(defvar prelude-snippets-dir (expand-file-name "snippets" prelude-dir) (defvar prelude-snippets-dir (expand-file-name "snippets" prelude-dir)
"This folder houses additional yasnippet bundles distributed with Prelude.") "This folder houses additional yasnippet bundles distributed with Prelude.")
(defvar prelude-personal-snippets-dir (expand-file-name "snippets" prelude-personal-dir) (defvar prelude-personal-snippets-dir (expand-file-name "snippets" prelude-personal-dir)
@ -61,8 +62,7 @@ ELPA (or MELPA).")
(make-directory prelude-savefile-dir)) (make-directory prelude-savefile-dir))
(defun prelude-add-subfolders-to-load-path (parent-dir) (defun prelude-add-subfolders-to-load-path (parent-dir)
"Adds all first level `parent-dir' subdirs to the
Emacs load path."
"Add all first level PARENT-DIR subdirs to the `load-path'."
(dolist (f (directory-files parent-dir)) (dolist (f (directory-files parent-dir))
(let ((name (expand-file-name f parent-dir))) (let ((name (expand-file-name f parent-dir)))
(when (and (file-directory-p name) (when (and (file-directory-p name)

2
modules/prelude-erlang.el

@ -35,7 +35,7 @@
(prelude-ensure-module-deps '(erlang)) (prelude-ensure-module-deps '(erlang))
(defcustom wrangler-path nil (defcustom wrangler-path nil
"*The location of wrangler elisp directory"
"The location of wrangler elisp directory."
:group 'prelude-erlang :group 'prelude-erlang
:type 'string :type 'string
:safe 'stringp) :safe 'stringp)

Loading…
Cancel
Save