Mercurial > hg > xemacs-beta
comparison lisp/prim/auto-autoloads.el @ 20:859a2309aef8 r19-15b93
Import from CVS: tag r19-15b93
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:50:05 +0200 |
parents | d95e72db5c07 |
children | 8fc7fe29b841 |
comparison
equal
deleted
inserted
replaced
19:ac1f612d5250 | 20:859a2309aef8 |
---|---|
887 Batch function to extract custom dependencies from .el files. | 887 Batch function to extract custom dependencies from .el files. |
888 Usage: emacs -batch *.el -f custom-make-dependencies > deps.el" nil nil) | 888 Usage: emacs -batch *.el -f custom-make-dependencies > deps.el" nil nil) |
889 | 889 |
890 ;;;*** | 890 ;;;*** |
891 | 891 |
892 ;;;### (autoloads (custom-set-faces custom-set-variables custom-initialize-faces custom-add-to-group defgroup custom-declare-group defface custom-declare-face defcustom custom-declare-variable) "custom" "custom/custom.el") | 892 ;;;### (autoloads nil "custom" "custom/custom.el") |
893 | |
894 (autoload 'custom-declare-variable "custom" "\ | |
895 Like `defcustom', but SYMBOL and VALUE are evaluated as notmal arguments." nil nil) | |
896 | |
897 (autoload 'defcustom "custom" "\ | |
898 Declare SYMBOL as a customizable variable that defaults to VALUE. | |
899 DOC is the variable documentation. | |
900 | |
901 Neither SYMBOL nor VALUE needs to be quoted. | |
902 If SYMBOL is not already bound, initialize it to VALUE. | |
903 The remaining arguments should have the form | |
904 | |
905 [KEYWORD VALUE]... | |
906 | |
907 The following KEYWORD's are defined: | |
908 | |
909 :type VALUE should be a widget type. | |
910 :options VALUE should be a list of valid members of the widget type. | |
911 :group VALUE should be a customization group. | |
912 Add SYMBOL to that group. | |
913 | |
914 Read the section about customization in the emacs lisp manual for more | |
915 information." nil 'macro) | |
916 | |
917 (autoload 'custom-declare-face "custom" "\ | |
918 Like `defface', but FACE is evaluated as a normal argument." nil nil) | |
919 | |
920 (autoload 'defface "custom" "\ | |
921 Declare FACE as a customizable face that defaults to SPEC. | |
922 FACE does not need to be quoted. | |
923 | |
924 Third argument DOC is the face documentation. | |
925 | |
926 If FACE has been set with `custom-set-face', set the face attributes | |
927 as specified by that function, otherwise set the face attributes | |
928 according to SPEC. | |
929 | |
930 The remaining arguments should have the form | |
931 | |
932 [KEYWORD VALUE]... | |
933 | |
934 The following KEYWORD's are defined: | |
935 | |
936 :group VALUE should be a customization group. | |
937 Add FACE to that group. | |
938 | |
939 SPEC should be an alist of the form ((DISPLAY ATTS)...). | |
940 | |
941 ATTS is a list of face attributes and their values. The possible | |
942 attributes are defined in the variable `custom-face-attributes'. | |
943 Alternatively, ATTS can be a face in which case the attributes of that | |
944 face is used. | |
945 | |
946 The ATTS of the first entry in SPEC where the DISPLAY matches the | |
947 frame should take effect in that frame. DISPLAY can either be the | |
948 symbol `t', which will match all frames, or an alist of the form | |
949 \((REQ ITEM...)...) | |
950 | |
951 For the DISPLAY to match a FRAME, the REQ property of the frame must | |
952 match one of the ITEM. The following REQ are defined: | |
953 | |
954 `type' (the value of (window-system)) | |
955 Should be one of `x' or `tty'. | |
956 | |
957 `class' (the frame's color support) | |
958 Should be one of `color', `grayscale', or `mono'. | |
959 | |
960 `background' (what color is used for the background text) | |
961 Should be one of `light' or `dark'. | |
962 | |
963 Read the section about customization in the emacs lisp manual for more | |
964 information." nil 'macro) | |
965 | |
966 (autoload 'custom-declare-group "custom" "\ | |
967 Like `defgroup', but SYMBOL is evaluated as a normal argument." nil nil) | |
968 | |
969 (autoload 'defgroup "custom" "\ | |
970 Declare SYMBOL as a customization group containing MEMBERS. | |
971 SYMBOL does not need to be quoted. | |
972 | |
973 Third arg DOC is the group documentation. | |
974 | |
975 MEMBERS should be an alist of the form ((NAME WIDGET)...) where | |
976 NAME is a symbol and WIDGET is a widget is a widget for editing that | |
977 symbol. Useful widgets are `custom-variable' for editing variables, | |
978 `custom-face' for edit faces, and `custom-group' for editing groups. | |
979 | |
980 The remaining arguments should have the form | |
981 | |
982 [KEYWORD VALUE]... | |
983 | |
984 The following KEYWORD's are defined: | |
985 | |
986 :group VALUE should be a customization group. | |
987 Add SYMBOL to that group. | |
988 | |
989 Read the section about customization in the emacs lisp manual for more | |
990 information." nil 'macro) | |
991 | |
992 (autoload 'custom-add-to-group "custom" "\ | |
993 To existing GROUP add a new OPTION of type WIDGET, | |
994 If there already is an entry for that option, overwrite it." nil nil) | |
995 | |
996 (autoload 'custom-initialize-faces "custom" "\ | |
997 Initialize all custom faces for FRAME. | |
998 If FRAME is nil or omitted, initialize them for all frames." nil nil) | |
999 | |
1000 (autoload 'custom-set-variables "custom" "\ | |
1001 Initialize variables according to user preferences. | |
1002 | |
1003 The arguments should be a list where each entry has the form: | |
1004 | |
1005 (SYMBOL VALUE [NOW]) | |
1006 | |
1007 The unevaluated VALUE is stored as the saved value for SYMBOL. | |
1008 If NOW is present and non-nil, VALUE is also evaluated and bound as | |
1009 the default value for the SYMBOL." nil nil) | |
1010 | |
1011 (autoload 'custom-set-faces "custom" "\ | |
1012 Initialize faces according to user preferences. | |
1013 The arguments should be a list where each entry has the form: | |
1014 | |
1015 (FACE SPEC [NOW]) | |
1016 | |
1017 SPEC will be stored as the saved value for FACE. If NOW is present | |
1018 and non-nil, FACE will also be created according to SPEC. | |
1019 | |
1020 See `defface' for the format of SPEC." nil nil) | |
1021 | 893 |
1022 ;;;*** | 894 ;;;*** |
1023 | 895 |
1024 ;;;### (autoloads (widget-delete widget-create) "widget-edit" "custom/widget-edit.el") | 896 ;;;### (autoloads (widget-delete widget-create) "widget-edit" "custom/widget-edit.el") |
1025 | 897 |
3672 ;;;*** | 3544 ;;;*** |
3673 | 3545 |
3674 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") | 3546 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") |
3675 | 3547 |
3676 (autoload 'ksh-mode "ksh-mode" "\ | 3548 (autoload 'ksh-mode "ksh-mode" "\ |
3677 ksh-mode $Revision: 1.5 $ - Major mode for editing (Bourne, Korn or Bourne again) | 3549 ksh-mode $Revision: 1.6 $ - Major mode for editing (Bourne, Korn or Bourne again) |
3678 shell scripts. | 3550 shell scripts. |
3679 Special key bindings and commands: | 3551 Special key bindings and commands: |
3680 \\{ksh-mode-map} | 3552 \\{ksh-mode-map} |
3681 Variables controlling indentation style: | 3553 Variables controlling indentation style: |
3682 ksh-indent | 3554 ksh-indent |
4889 | 4761 |
4890 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") | 4762 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") |
4891 | 4763 |
4892 (autoload 'vhdl-mode "vhdl-mode" "\ | 4764 (autoload 'vhdl-mode "vhdl-mode" "\ |
4893 Major mode for editing VHDL code. | 4765 Major mode for editing VHDL code. |
4894 vhdl-mode $Revision: 1.5 $ | 4766 vhdl-mode $Revision: 1.6 $ |
4895 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a | 4767 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a |
4896 vhdl-mode buffer. This automatically sets up a mail buffer with version | 4768 vhdl-mode buffer. This automatically sets up a mail buffer with version |
4897 information already added. You just need to add a description of the | 4769 information already added. You just need to add a description of the |
4898 problem, including a reproducable test case and send the message. | 4770 problem, including a reproducable test case and send the message. |
4899 | 4771 |