* lisp/paths.el (term-file-prefix): Move to lisp/faces.el (the only user).

* faces.el (term-file-prefix): Move here, make it a defcustom.
This commit is contained in:
Glenn Morris 2012-05-24 00:53:21 -07:00
parent ee2f89a665
commit f18b81e6d6
3 changed files with 13 additions and 5 deletions

View file

@ -1,5 +1,8 @@
2012-05-24 Glenn Morris <rgm@gnu.org>
* paths.el (term-file-prefix): Move to faces.el (the only user).
* faces.el (term-file-prefix): Move here, make it a defcustom.
* paths.el (news-directory, news-path, news-inews-program):
Move to gnus/nnspool.el.

View file

@ -28,6 +28,16 @@
(eval-when-compile
(require 'cl))
(defcustom term-file-prefix (purecopy "term/")
"If non-nil, Emacs startup performs terminal-specific initialization.
It does this by: (load (concat term-file-prefix (getenv \"TERM\")))
You may set this variable to nil in your init file if you do not wish
the terminal-initialization file to be loaded."
:type '(choice (const :tag "No terminal-specific initialization" nil)
(string :tag "Name of directory with term files"))
:group 'terminals)
(declare-function xw-defined-colors "term/common-win" (&optional frame))
(defvar help-xref-stack-item)

View file

@ -127,9 +127,4 @@ the environment variable INFOPATH is set.")
:group 'environment
:type 'file)
(defvar term-file-prefix (purecopy "term/") "\
If non-nil, Emacs startup does (load (concat term-file-prefix (getenv \"TERM\")))
You may set this variable to nil in your `.emacs' file if you do not wish
the terminal-initialization file to be loaded.")
;;; paths.el ends here