Mercurial > hg > xemacs-beta
comparison lisp/custom/auto-autoloads.el @ 165:5a88923fcbfe r20-3b9
Import from CVS: tag r20-3b9
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:44:42 +0200 |
parents | 0132846995bd |
children | 929b76928fce |
comparison
equal
deleted
inserted
replaced
164:4e0740e5aab2 | 165:5a88923fcbfe |
---|---|
1 ;;; DO NOT MODIFY THIS FILE | 1 ;;; DO NOT MODIFY THIS FILE |
2 (if (not (featurep 'custom-autoloads)) | 2 (if (not (featurep 'custom-autoloads)) |
3 (progn | 3 (progn |
4 | 4 |
5 ;;;### (autoloads (customize-menu-create custom-menu-create custom-save-all custom-save-customized customize-browse custom-buffer-create-other-window custom-buffer-create customize-apropos-groups customize-apropos-faces customize-apropos-options customize-apropos customize-saved customize-customized customize-face-other-window customize-face customize-option-other-window customize-option customize-group-other-window customize-group customize custom-set-variable custom-set-value) "cus-edit" "custom/cus-edit.el") | 5 ;;;### (autoloads (customize-menu-create custom-menu-create custom-save-all customize-save-customized customize-browse custom-buffer-create-other-window custom-buffer-create customize-apropos-groups customize-apropos-faces customize-apropos-options customize-apropos customize-saved customize-customized customize-face-other-window customize-face customize-option-other-window customize-option customize-group-other-window customize-group customize customize-set-variable customize-set-value) "cus-edit" "custom/cus-edit.el") |
6 | 6 |
7 (autoload 'custom-set-value "cus-edit" "\ | 7 (autoload 'customize-set-value "cus-edit" "\ |
8 Set VARIABLE to VALUE. VALUE is a Lisp object. | 8 Set VARIABLE to VALUE. VALUE is a Lisp object. |
9 | 9 |
10 If VARIABLE has a `variable-interactive' property, that is used as if | 10 If VARIABLE has a `variable-interactive' property, that is used as if |
11 it were the arg to `interactive' (which see) to interactively read the value. | 11 it were the arg to `interactive' (which see) to interactively read the value. |
12 | 12 |
13 If VARIABLE has a `custom-type' property, it must be a widget and the | 13 If VARIABLE has a `custom-type' property, it must be a widget and the |
14 `:prompt-value' property of that widget will be used for reading the value." t nil) | 14 `:prompt-value' property of that widget will be used for reading the value." t nil) |
15 | 15 |
16 (autoload 'custom-set-variable "cus-edit" "\ | 16 (autoload 'customize-set-variable "cus-edit" "\ |
17 Set the default for VARIABLE to VALUE. VALUE is a Lisp object. | 17 Set the default for VARIABLE to VALUE. VALUE is a Lisp object. |
18 | 18 |
19 If VARIABLE has a `custom-set' property, that is used for setting | 19 If VARIABLE has a `custom-set' property, that is used for setting |
20 VARIABLE, otherwise `set-default' is used. | 20 VARIABLE, otherwise `set-default' is used. |
21 | 21 |
99 (autoload 'customize-browse "cus-edit" "\ | 99 (autoload 'customize-browse "cus-edit" "\ |
100 Create a tree browser for the customize hierarchy." t nil) | 100 Create a tree browser for the customize hierarchy." t nil) |
101 | 101 |
102 (defcustom custom-file (if (featurep 'xemacs) "~/.xemacs-custom" "~/.emacs") "File used for storing customization information.\nIf you change this from the default \"~/.emacs\" you need to\nexplicitly load that file for the settings to take effect." :type 'file :group 'customize) | 102 (defcustom custom-file (if (featurep 'xemacs) "~/.xemacs-custom" "~/.emacs") "File used for storing customization information.\nIf you change this from the default \"~/.emacs\" you need to\nexplicitly load that file for the settings to take effect." :type 'file :group 'customize) |
103 | 103 |
104 (autoload 'custom-save-customized "cus-edit" "\ | 104 (autoload 'customize-save-customized "cus-edit" "\ |
105 Save all user options which have been set in this session." t nil) | 105 Save all user options which have been set in this session." t nil) |
106 | 106 |
107 (autoload 'custom-save-all "cus-edit" "\ | 107 (autoload 'custom-save-all "cus-edit" "\ |
108 Save all customizations in `custom-file'." nil nil) | 108 Save all customizations in `custom-file'." nil nil) |
109 | 109 |