[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r108355: * lisp/paths.el (term-file-p
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r108355: * lisp/paths.el (term-file-prefix): Move to lisp/faces.el (the only user). |
Date: |
Thu, 24 May 2012 00:53:21 -0700 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 108355
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2012-05-24 00:53:21 -0700
message:
* 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.
modified:
lisp/ChangeLog
lisp/faces.el
lisp/paths.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-05-24 07:31:45 +0000
+++ b/lisp/ChangeLog 2012-05-24 07:53:21 +0000
@@ -1,5 +1,8 @@
2012-05-24 Glenn Morris <address@hidden>
+ * 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.
=== modified file 'lisp/faces.el'
--- a/lisp/faces.el 2012-04-22 18:04:54 +0000
+++ b/lisp/faces.el 2012-05-24 07:53:21 +0000
@@ -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)
=== modified file 'lisp/paths.el'
--- a/lisp/paths.el 2012-05-24 07:31:45 +0000
+++ b/lisp/paths.el 2012-05-24 07:53:21 +0000
@@ -127,9 +127,4 @@
: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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r108355: * lisp/paths.el (term-file-prefix): Move to lisp/faces.el (the only user).,
Glenn Morris <=