comparison lisp/prim/auto-autoloads.el @ 18:d95e72db5c07 r19-15b92

Import from CVS: tag r19-15b92
author cvs
date Mon, 13 Aug 2007 08:49:43 +0200
parents 0293115a14e9
children 859a2309aef8
comparison
equal deleted inserted replaced
17:4579af9d8826 18:d95e72db5c07
850 (autoload 'rsh "telnet" "\ 850 (autoload 'rsh "telnet" "\
851 Open a network login connection to host named HOST (a string). 851 Open a network login connection to host named HOST (a string).
852 Communication with HOST is recorded in a buffer `*rsh-HOST*'. 852 Communication with HOST is recorded in a buffer `*rsh-HOST*'.
853 Normally input is edited in Emacs and sent a line at a time. 853 Normally input is edited in Emacs and sent a line at a time.
854 See also `\\[telnet]'." t nil) 854 See also `\\[telnet]'." t nil)
855
856 ;;;***
857
858 ;;;### (autoloads (custom-make-dependencies custom-menu-update custom-buffer-create customize-apropos customize-customized customize-face customize-variable customize) "custom-edit" "custom/custom-edit.el")
859
860 (autoload 'customize "custom-edit" "\
861 Customize SYMBOL, which must be a customization group." t nil)
862
863 (autoload 'customize-variable "custom-edit" "\
864 Customize SYMBOL, which must be a variable." t nil)
865
866 (autoload 'customize-face "custom-edit" "\
867 Customize FACE." t nil)
868
869 (autoload 'customize-customized "custom-edit" "\
870 Customize all already customized user options." t nil)
871
872 (autoload 'customize-apropos "custom-edit" "\
873 Customize all user options matching REGEXP.
874 If ALL (e.g., started with a prefix key), include options which are not
875 user-settable." t nil)
876
877 (autoload 'custom-buffer-create "custom-edit" "\
878 Create a buffer containing OPTIONS.
879 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
880 SYMBOL is a customization option, and WIDGET is a widget for editing
881 that option." nil nil)
882
883 (autoload 'custom-menu-update "custom-edit" "\
884 Update customize menu." t nil)
885
886 (autoload 'custom-make-dependencies "custom-edit" "\
887 Batch function to extract custom dependencies from .el files.
888 Usage: emacs -batch *.el -f custom-make-dependencies > deps.el" nil nil)
889
890 ;;;***
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")
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
1022 ;;;***
1023
1024 ;;;### (autoloads (widget-delete widget-create) "widget-edit" "custom/widget-edit.el")
1025
1026 (autoload 'widget-create "widget-edit" "\
1027 Create widget of TYPE.
1028 The optional ARGS are additional keyword arguments." nil nil)
1029
1030 (autoload 'widget-delete "widget-edit" "\
1031 Delete WIDGET." nil nil)
1032
1033 ;;;***
1034
1035 ;;;### (autoloads (define-widget) "widget" "custom/widget.el")
1036
1037 (autoload 'define-widget "widget" "\
1038 Define a new widget type named NAME from CLASS.
1039
1040 NAME and CLASS should both be symbols, CLASS should be one of the
1041 existing widget types, or nil to create the widget from scratch.
1042
1043 After the new widget has been defined, the following two calls will
1044 create identical widgets:
1045
1046 * (widget-create NAME)
1047
1048 * (apply 'widget-create CLASS ARGS)
1049
1050 The third argument DOC is a documentation string for the widget." nil nil)
855 1051
856 ;;;*** 1052 ;;;***
857 1053
858 ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el") 1054 ;;;### (autoloads (ange-ftp-hook-function) "ange-ftp" "dired/ange-ftp.el")
859 1055
1812 (autoload 'psychoanalyze-pinhead "yow" "\ 2008 (autoload 'psychoanalyze-pinhead "yow" "\
1813 Zippy goes to the analyst." t nil) 2009 Zippy goes to the analyst." t nil)
1814 2010
1815 ;;;*** 2011 ;;;***
1816 2012
1817 ;;;### (autoloads (custom-make-dependencies custom-menu-update custom-buffer-create customize-apropos customize-customized customize-face customize-variable customize) "custom-edit" "gnus/custom-edit.el")
1818
1819 (autoload 'customize "custom-edit" "\
1820 Customize SYMBOL, which must be a customization group." t nil)
1821
1822 (autoload 'customize-variable "custom-edit" "\
1823 Customize SYMBOL, which must be a variable." t nil)
1824
1825 (autoload 'customize-face "custom-edit" "\
1826 Customize FACE." t nil)
1827
1828 (autoload 'customize-customized "custom-edit" "\
1829 Customize all already customized user options." t nil)
1830
1831 (autoload 'customize-apropos "custom-edit" "\
1832 Customize all user options matching REGEXP.
1833 If ALL (e.g., started with a prefix key), include options which are not
1834 user-settable." t nil)
1835
1836 (autoload 'custom-buffer-create "custom-edit" "\
1837 Create a buffer containing OPTIONS.
1838 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where
1839 SYMBOL is a customization option, and WIDGET is a widget for editing
1840 that option." nil nil)
1841
1842 (autoload 'custom-menu-update "custom-edit" "\
1843 Update customize menu." t nil)
1844
1845 (autoload 'custom-make-dependencies "custom-edit" "\
1846 Batch function to extract custom dependencies from .el files.
1847 Usage: emacs -batch *.el -f custom-make-dependencies > deps.el" nil nil)
1848
1849 ;;;***
1850
1851 ;;;### (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" "gnus/custom.el")
1852
1853 (autoload 'custom-declare-variable "custom" "\
1854 Like `defcustom', but SYMBOL and VALUE are evaluated as notmal arguments." nil nil)
1855
1856 (autoload 'defcustom "custom" "\
1857 Declare SYMBOL as a customizable variable that defaults to VALUE.
1858 DOC is the variable documentation.
1859
1860 Neither SYMBOL nor VALUE needs to be quoted.
1861 If SYMBOL is not already bound, initialize it to VALUE.
1862 The remaining arguments should have the form
1863
1864 [KEYWORD VALUE]...
1865
1866 The following KEYWORD's are defined:
1867
1868 :type VALUE should be a widget type.
1869 :options VALUE should be a list of valid members of the widget type.
1870 :group VALUE should be a customization group.
1871 Add SYMBOL to that group.
1872
1873 Read the section about customization in the emacs lisp manual for more
1874 information." nil 'macro)
1875
1876 (autoload 'custom-declare-face "custom" "\
1877 Like `defface', but FACE is evaluated as a normal argument." nil nil)
1878
1879 (autoload 'defface "custom" "\
1880 Declare FACE as a customizable face that defaults to SPEC.
1881 FACE does not need to be quoted.
1882
1883 Third argument DOC is the face documentation.
1884
1885 If FACE has been set with `custom-set-face', set the face attributes
1886 as specified by that function, otherwise set the face attributes
1887 according to SPEC.
1888
1889 The remaining arguments should have the form
1890
1891 [KEYWORD VALUE]...
1892
1893 The following KEYWORD's are defined:
1894
1895 :group VALUE should be a customization group.
1896 Add FACE to that group.
1897
1898 SPEC should be an alist of the form ((DISPLAY ATTS)...).
1899
1900 ATTS is a list of face attributes and their values. The possible
1901 attributes are defined in the variable `custom-face-attributes'.
1902 Alternatively, ATTS can be a face in which case the attributes of that
1903 face is used.
1904
1905 The ATTS of the first entry in SPEC where the DISPLAY matches the
1906 frame should take effect in that frame. DISPLAY can either be the
1907 symbol `t', which will match all frames, or an alist of the form
1908 \((REQ ITEM...)...)
1909
1910 For the DISPLAY to match a FRAME, the REQ property of the frame must
1911 match one of the ITEM. The following REQ are defined:
1912
1913 `type' (the value of (window-system))
1914 Should be one of `x' or `tty'.
1915
1916 `class' (the frame's color support)
1917 Should be one of `color', `grayscale', or `mono'.
1918
1919 `background' (what color is used for the background text)
1920 Should be one of `light' or `dark'.
1921
1922 Read the section about customization in the emacs lisp manual for more
1923 information." nil 'macro)
1924
1925 (autoload 'custom-declare-group "custom" "\
1926 Like `defgroup', but SYMBOL is evaluated as a normal argument." nil nil)
1927
1928 (autoload 'defgroup "custom" "\
1929 Declare SYMBOL as a customization group containing MEMBERS.
1930 SYMBOL does not need to be quoted.
1931
1932 Third arg DOC is the group documentation.
1933
1934 MEMBERS should be an alist of the form ((NAME WIDGET)...) where
1935 NAME is a symbol and WIDGET is a widget is a widget for editing that
1936 symbol. Useful widgets are `custom-variable' for editing variables,
1937 `custom-face' for edit faces, and `custom-group' for editing groups.
1938
1939 The remaining arguments should have the form
1940
1941 [KEYWORD VALUE]...
1942
1943 The following KEYWORD's are defined:
1944
1945 :group VALUE should be a customization group.
1946 Add SYMBOL to that group.
1947
1948 Read the section about customization in the emacs lisp manual for more
1949 information." nil 'macro)
1950
1951 (autoload 'custom-add-to-group "custom" "\
1952 To existing GROUP add a new OPTION of type WIDGET,
1953 If there already is an entry for that option, overwrite it." nil nil)
1954
1955 (autoload 'custom-initialize-faces "custom" "\
1956 Initialize all custom faces for FRAME.
1957 If FRAME is nil or omitted, initialize them for all frames." nil nil)
1958
1959 (autoload 'custom-set-variables "custom" "\
1960 Initialize variables according to user preferences.
1961
1962 The arguments should be a list where each entry has the form:
1963
1964 (SYMBOL VALUE [NOW])
1965
1966 The unevaluated VALUE is stored as the saved value for SYMBOL.
1967 If NOW is present and non-nil, VALUE is also evaluated and bound as
1968 the default value for the SYMBOL." nil nil)
1969
1970 (autoload 'custom-set-faces "custom" "\
1971 Initialize faces according to user preferences.
1972 The arguments should be a list where each entry has the form:
1973
1974 (FACE SPEC [NOW])
1975
1976 SPEC will be stored as the saved value for FACE. If NOW is present
1977 and non-nil, FACE will also be created according to SPEC.
1978
1979 See `defface' for the format of SPEC." nil nil)
1980
1981 ;;;***
1982
1983 ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el") 2013 ;;;### (autoloads (gnus-earcon-display) "earcon" "gnus/earcon.el")
1984 2014
1985 (autoload 'gnus-earcon-display "earcon" "\ 2015 (autoload 'gnus-earcon-display "earcon" "\
1986 Play sounds in message buffers." t nil) 2016 Play sounds in message buffers." t nil)
1987 2017
2034 ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el") 2064 ;;;### (autoloads (gnus-change-server) "gnus-move" "gnus/gnus-move.el")
2035 2065
2036 (autoload 'gnus-change-server "gnus-move" "\ 2066 (autoload 'gnus-change-server "gnus-move" "\
2037 Move from FROM-SERVER to TO-SERVER. 2067 Move from FROM-SERVER to TO-SERVER.
2038 Update the .newsrc.eld file to reflect the change of nntp server." t nil) 2068 Update the .newsrc.eld file to reflect the change of nntp server." t nil)
2039
2040 ;;;***
2041
2042 ;;;### (autoloads (gnus-sound-play) "gnus-sound" "gnus/gnus-sound.el")
2043
2044 (autoload 'gnus-sound-play "gnus-sound" "\
2045 Play a sound through the speaker." t nil)
2046 2069
2047 ;;;*** 2070 ;;;***
2048 2071
2049 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el") 2072 ;;;### (autoloads (gnus-batch-brew-soup) "gnus-soup" "gnus/gnus-soup.el")
2050 2073
2111 2134
2112 ;;;*** 2135 ;;;***
2113 2136
2114 ;;;### (autoloads (unbold-region bold-region message-news-other-frame message-news-other-window message-mail-other-frame message-mail-other-window message-bounce message-resend message-forward message-recover message-supersede message-cancel-news message-followup message-wide-reply message-reply message-news message-mail message-mode) "message" "gnus/message.el") 2137 ;;;### (autoloads (unbold-region bold-region message-news-other-frame message-news-other-window message-mail-other-frame message-mail-other-window message-bounce message-resend message-forward message-recover message-supersede message-cancel-news message-followup message-wide-reply message-reply message-news message-mail message-mode) "message" "gnus/message.el")
2115 2138
2116 (defcustom message-fcc-handler-function 'message-output "*A function called to save outgoing articles.\nThis function will be called with the name of the file to store the\narticle in. The default function is `rmail-output' which saves in Unix\nmailbox format." :type '(radio (function-item rmail-output) (function :tag "Other")) :group 'message-sending) 2139 (defcustom message-fcc-handler-function 'message-output "*A function called to save outgoing articles.\nThis function will be called with the name of the file to store the\narticle in. The default function is `message-output' which saves in Unix\nmailbox format." :type '(radio (function-item message-output) (function :tag "Other")) :group 'message-sending)
2117 2140
2118 (defcustom message-from-style 'default "*Specifies how \"From\" headers look.\n\nIf `nil', they contain just the return address like:\n king@grassland.com\nIf `parens', they look like:\n king@grassland.com (Elvis Parsley)\nIf `angles', they look like:\n Elvis Parsley <king@grassland.com>\n\nOtherwise, most addresses look like `angles', but they look like\n`parens' if `angles' would need quoting and `parens' would not." :type '(choice (const :tag "simple" nil) (const parens) (const angles) (const default)) :group 'message-headers) 2141 (defcustom message-from-style 'default "*Specifies how \"From\" headers look.\n\nIf `nil', they contain just the return address like:\n king@grassland.com\nIf `parens', they look like:\n king@grassland.com (Elvis Parsley)\nIf `angles', they look like:\n Elvis Parsley <king@grassland.com>\n\nOtherwise, most addresses look like `angles', but they look like\n`parens' if `angles' would need quoting and `parens' would not." :type '(choice (const :tag "simple" nil) (const parens) (const angles) (const default)) :group 'message-headers)
2119 2142
2120 (defcustom message-signature-separator "^-- *$" "Regexp matching the signature separator." :type 'regexp :group 'message-various) 2143 (defcustom message-signature-separator "^-- *$" "Regexp matching the signature separator." :type 'regexp :group 'message-various)
2121 2144
3649 ;;;*** 3672 ;;;***
3650 3673
3651 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") 3674 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el")
3652 3675
3653 (autoload 'ksh-mode "ksh-mode" "\ 3676 (autoload 'ksh-mode "ksh-mode" "\
3654 ksh-mode $Revision: 1.4 $ - Major mode for editing (Bourne, Korn or Bourne again) 3677 ksh-mode $Revision: 1.5 $ - Major mode for editing (Bourne, Korn or Bourne again)
3655 shell scripts. 3678 shell scripts.
3656 Special key bindings and commands: 3679 Special key bindings and commands:
3657 \\{ksh-mode-map} 3680 \\{ksh-mode-map}
3658 Variables controlling indentation style: 3681 Variables controlling indentation style:
3659 ksh-indent 3682 ksh-indent
4866 4889
4867 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") 4890 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el")
4868 4891
4869 (autoload 'vhdl-mode "vhdl-mode" "\ 4892 (autoload 'vhdl-mode "vhdl-mode" "\
4870 Major mode for editing VHDL code. 4893 Major mode for editing VHDL code.
4871 vhdl-mode $Revision: 1.4 $ 4894 vhdl-mode $Revision: 1.5 $
4872 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a 4895 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a
4873 vhdl-mode buffer. This automatically sets up a mail buffer with version 4896 vhdl-mode buffer. This automatically sets up a mail buffer with version
4874 information already added. You just need to add a description of the 4897 information already added. You just need to add a description of the
4875 problem, including a reproducable test case and send the message. 4898 problem, including a reproducable test case and send the message.
4876 4899
9501 With prefix-arg P, ignore viewers and dump the link straight 9524 With prefix-arg P, ignore viewers and dump the link straight
9502 to disk." t nil) 9525 to disk." t nil)
9503 9526
9504 ;;;*** 9527 ;;;***
9505 9528
9506 ;;;### (autoloads (widget-delete widget-create) "widget-edit" "w3/widget-edit.el")
9507
9508 (autoload 'widget-create "widget-edit" "\
9509 Create widget of TYPE.
9510 The optional ARGS are additional keyword arguments." nil nil)
9511
9512 (autoload 'widget-delete "widget-edit" "\
9513 Delete WIDGET." nil nil)
9514
9515 ;;;***
9516
9517 ;;;### (autoloads (define-widget) "widget" "w3/widget.el")
9518
9519 (autoload 'define-widget "widget" "\
9520 Define a new widget type named NAME from CLASS.
9521
9522 NAME and CLASS should both be symbols, CLASS should be one of the
9523 existing widget types, or nil to create the widget from scratch.
9524
9525 After the new widget has been defined, the following two calls will
9526 create identical widgets:
9527
9528 * (widget-create NAME)
9529
9530 * (apply 'widget-create CLASS ARGS)
9531
9532 The third argument DOC is a documentation string for the widget." nil nil)
9533
9534 ;;;***
9535
9536 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "x11/x-font-menu.el") 9529 ;;;### (autoloads (font-menu-weight-constructor font-menu-size-constructor font-menu-family-constructor reset-device-font-menus) "x-font-menu" "x11/x-font-menu.el")
9537 9530
9538 (defvar font-menu-ignore-scaled-fonts t "\ 9531 (defvar font-menu-ignore-scaled-fonts t "\
9539 *If non-nil, then the font menu will try to show only bitmap fonts.") 9532 *If non-nil, then the font menu will try to show only bitmap fonts.")
9540 9533