diff options
author | Jan Djärv <jan.h.d@swipnet.se> | 2009-11-21 15:40:24 +0000 |
---|---|---|
committer | Jan Djärv <jan.h.d@swipnet.se> | 2009-11-21 15:40:24 +0000 |
commit | 8b571bf3080b3a15870a4992e7c06500661b38e0 (patch) | |
tree | 077b7942357154989972ec698e1ed40ba2cada7a /lisp/cus-start.el | |
parent | 872870b29a846cc8e27d53d05147eb3e0beb7c50 (diff) | |
download | emacs-8b571bf3080b3a15870a4992e7c06500661b38e0.tar.gz |
* cus-start.el (all): Add native condition for font-use-system-font.
* configure.in: Don't check for GConf unless X is used.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 76acd7e92cb..014e75bf6e3 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -397,6 +397,8 @@ since it could result in memory overflow and make Emacs crash." (fboundp 'x-selection-exists-p)) ((string-match "fringe" (symbol-name symbol)) (fboundp 'define-fringe-bitmap)) + ((equal "font-use-system-font" (symbol-name symbol)) + (featurep 'system-font-setting)) (t t)))) (if (not (boundp symbol)) ;; If variables are removed from C code, give an error here! |