diff options
author | Glenn Morris <rgm@gnu.org> | 2015-05-08 20:24:37 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-05-08 20:24:37 -0400 |
commit | 36c6d20bea2f8af4de126d0d503e3904ee7ab484 (patch) | |
tree | 8641561c5634ae449014764f4cbef2b476781dc0 | |
parent | 30ba66a6ecb4c5b7138d60ea485789517cb8a873 (diff) | |
download | emacs-36c6d20bea2f8af4de126d0d503e3904ee7ab484.tar.gz |
Quieten --without-x compilation.
* lisp/term/common-win.el: Provide a feature.
* lisp/term/x-win.el (term/common-win): Require it.
-rw-r--r-- | lisp/term/common-win.el | 2 | ||||
-rw-r--r-- | lisp/term/x-win.el | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lisp/term/common-win.el b/lisp/term/common-win.el index 64459353e1c..98ad5acf268 100644 --- a/lisp/term/common-win.el +++ b/lisp/term/common-win.el @@ -419,4 +419,6 @@ the operating system.") (setq defined-colors (cons this-color defined-colors)))) defined-colors))) +(provide 'term/common-win) + ;;; common-win.el ends here diff --git a/lisp/term/x-win.el b/lisp/term/x-win.el index b0902942f8f..11fe93f88ba 100644 --- a/lisp/term/x-win.el +++ b/lisp/term/x-win.el @@ -72,6 +72,7 @@ (if (not (fboundp 'x-create-frame)) (error "%s: Loading x-win.el but not compiled for X" (invocation-name))) +(require 'term/common-win) (require 'frame) (require 'mouse) (require 'scroll-bar) |