diff options
author | Dave Love <fx@gnu.org> | 2002-10-29 18:51:52 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2002-10-29 18:51:52 +0000 |
commit | e5f5192972e30e7620e55dc33b022f629122bc2a (patch) | |
tree | 3ec1736a8b6dfcf1682f153f2dfd0cdf952fffa9 /lisp/cus-start.el | |
parent | 0ec2c3509c923b8bdcb92f6c31d96b6c7950fa80 (diff) | |
download | emacs-e5f5192972e30e7620e55dc33b022f629122bc2a.tar.gz |
(selection-coding-system, scalable-fonts-allowed):
Added.
Diffstat (limited to 'lisp/cus-start.el')
-rw-r--r-- | lisp/cus-start.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/cus-start.el b/lisp/cus-start.el index 08a99ea4d68..b5161bfcb99 100644 --- a/lisp/cus-start.el +++ b/lisp/cus-start.el @@ -82,6 +82,7 @@ (coding-system :tag "Single coding system" :value undecided) (function :value ignore)))) + (selection-coding-system mule coding-system) ;; dired.c (completion-ignored-extensions dired (repeat (string :format "%v"))) @@ -255,6 +256,8 @@ :format "%v") (other :tag "Unlimited" t))) (unibyte-display-via-language-environment mule boolean) + ;; xfaces.c + (scalable-fonts-allowed display boolean) ;; xfns.c (x-bitmap-file-path installation (repeat (directory :format "%v"))) @@ -312,6 +315,10 @@ (put symbol 'custom-version version))))) (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) +(put 'selection-coding-system 'custom-set + (lambda (symbol value) + (set-selection-coding-system value) + (set symbol value))) ;; Record cus-start as loaded ;; if we have set up all the info that we can set up. |