comparison lisp/cus-start.el @ 80080:6ec8ade53232

Revert previous change, which should have been on the trunk.
author Glenn Morris <rgm@gnu.org>
date Fri, 08 Feb 2008 20:11:33 +0000
parents dd3b45bfc388
children 6a6f69b927be
comparison
equal deleted inserted replaced
80079:dd3b45bfc388 80080:6ec8ade53232
127 :tag "Single coding system" 127 :tag "Single coding system"
128 :value undecided 128 :value undecided
129 :match (lambda (widget value) 129 :match (lambda (widget value)
130 (and value (not (functionp value))))) 130 (and value (not (functionp value)))))
131 (function :value ignore)))) 131 (function :value ignore))))
132 (selection-coding-system mule coding-system "22.1")
132 ;; dired.c 133 ;; dired.c
133 (completion-ignored-extensions dired 134 (completion-ignored-extensions dired
134 (repeat (string :format "%v"))) 135 (repeat (string :format "%v")))
135 ;; dispnew.c 136 ;; dispnew.c
136 (baud-rate display integer) 137 (baud-rate display integer)
453 (put symbol 'custom-version version))))) 454 (put symbol 'custom-version version)))))
454 455
455 (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable) 456 (custom-add-to-group 'iswitchb 'read-buffer-function 'custom-variable)
456 (custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start 457 (custom-add-to-group 'font-lock 'open-paren-in-column-0-is-defun-start
457 'custom-variable) 458 'custom-variable)
459 (put 'selection-coding-system 'custom-set
460 (lambda (symbol value)
461 (set-selection-coding-system value)
462 (set symbol value)))
458 463
459 ;; Record cus-start as loaded 464 ;; Record cus-start as loaded
460 ;; if we have set up all the info that we can set up. 465 ;; if we have set up all the info that we can set up.
461 ;; Don't record cus-start as loaded 466 ;; Don't record cus-start as loaded
462 ;; if we have set up only the standard values. 467 ;; if we have set up only the standard values.