aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-10-29 18:51:52 +0000
committerDave Love2002-10-29 18:51:52 +0000
commite5f5192972e30e7620e55dc33b022f629122bc2a (patch)
tree3ec1736a8b6dfcf1682f153f2dfd0cdf952fffa9
parent0ec2c3509c923b8bdcb92f6c31d96b6c7950fa80 (diff)
downloademacs-e5f5192972e30e7620e55dc33b022f629122bc2a.tar.gz
emacs-e5f5192972e30e7620e55dc33b022f629122bc2a.zip
(selection-coding-system, scalable-fonts-allowed):
Added.
-rw-r--r--lisp/ChangeLog15
-rw-r--r--lisp/cus-start.el7
2 files changed, 20 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6d99a8a5960..94c7a13da28 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,13 @@
12002-10-29 Dave Love <fx@gnu.org>
2
3 * cus-start.el (selection-coding-system, scalable-fonts-allowed):
4 Added.
5
6 * progmodes/scheme.el (syntax-case): Define
7 scheme-indent-function.
8
9 * international/mule-conf.el: Doc fixes.
10
12002-10-29 Richard M. Stallman <rms@gnu.org> 112002-10-29 Richard M. Stallman <rms@gnu.org>
2 12
3 * server.el (server-switch-buffer): Say when no server buffers remain. 13 * server.el (server-switch-buffer): Say when no server buffers remain.
@@ -16,8 +26,9 @@
16 26
172002-10-29 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change) 272002-10-29 Masayuki Ataka <ataka@milk.freemail.ne.jp> (tiny change)
18 28
19 * textmodes/texinfo.el (texinfo-environments): Add environment; copying, 29 * textmodes/texinfo.el (texinfo-environments): Add environment;
20 documentdescription, ifplaintext, ifnotplaintext, and verbatim. 30 copying, documentdescription, ifplaintext, ifnotplaintext, and
31 verbatim.
21 32
22 * textmodes/texinfmt.el (texinfo-format-ifplaintext): New function. 33 * textmodes/texinfmt.el (texinfo-format-ifplaintext): New function.
23 (ifplaintext, ifnotplaintext) 34 (ifplaintext, ifnotplaintext)
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 @@
82 (coding-system :tag "Single coding system" 82 (coding-system :tag "Single coding system"
83 :value undecided) 83 :value undecided)
84 (function :value ignore)))) 84 (function :value ignore))))
85 (selection-coding-system mule coding-system)
85 ;; dired.c 86 ;; dired.c
86 (completion-ignored-extensions dired 87 (completion-ignored-extensions dired
87 (repeat (string :format "%v"))) 88 (repeat (string :format "%v")))
@@ -255,6 +256,8 @@
255 :format "%v") 256 :format "%v")
256 (other :tag "Unlimited" t))) 257 (other :tag "Unlimited" t)))
257 (unibyte-display-via-language-environment mule boolean) 258 (unibyte-display-via-language-environment mule boolean)
259 ;; xfaces.c
260 (scalable-fonts-allowed display boolean)
258 ;; xfns.c 261 ;; xfns.c
259 (x-bitmap-file-path installation 262 (x-bitmap-file-path installation
260 (repeat (directory :format "%v"))) 263 (repeat (directory :format "%v")))
@@ -312,6 +315,10 @@
312 (put symbol 'custom-version version))))) 315 (put symbol 'custom-version version)))))
313 316
314(custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) 317(custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
318(put 'selection-coding-system 'custom-set
319 (lambda (symbol value)
320 (set-selection-coding-system value)
321 (set symbol value)))
315 322
316;; Record cus-start as loaded 323;; Record cus-start as loaded
317;; if we have set up all the info that we can set up. 324;; if we have set up all the info that we can set up.