Mercurial > hg > xemacs-beta
comparison lisp/prim/auto-autoloads.el @ 149:538048ae2ab8 r20-3b1
Import from CVS: tag r20-3b1
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:36:16 +0200 |
parents | 2af401a6ecca |
children | 59463afc5666 |
comparison
equal
deleted
inserted
replaced
148:f659db2a1f73 | 149:538048ae2ab8 |
---|---|
709 Normally input is edited in Emacs and sent a line at a time. | 709 Normally input is edited in Emacs and sent a line at a time. |
710 See also `\\[telnet]'." t nil) | 710 See also `\\[telnet]'." t nil) |
711 | 711 |
712 ;;;*** | 712 ;;;*** |
713 | 713 |
714 ;;;### (autoloads (customize-menu-create custom-menu-create custom-save-all custom-buffer-create customize-apropos customize-customized customize-face-other-window customize-face customize-variable-other-window customize-variable customize) "cus-edit" "custom/cus-edit.el") | 714 ;;;### (autoloads (customize-menu-create custom-menu-create custom-save-all custom-save-customized custom-buffer-create-other-window custom-buffer-create customize-apropos customize-saved customize-customized customize-face-other-window customize-face customize-variable-other-window customize-variable customize-other-window customize custom-set-variable custom-set-value) "cus-edit" "custom/cus-edit.el") |
715 | |
716 (autoload 'custom-set-value "cus-edit" "\ | |
717 Set VARIABLE to VALUE. VALUE is a Lisp object. | |
718 | |
719 If VARIABLE has a `variable-interactive' property, that is used as if | |
720 it were the arg to `interactive' (which see) to interactively read the value. | |
721 | |
722 If VARIABLE has a `custom-type' property, it must be a widget and the | |
723 `:prompt-value' property of that widget will be used for reading the value." t nil) | |
724 | |
725 (autoload 'custom-set-variable "cus-edit" "\ | |
726 Set the default for VARIABLE to VALUE. VALUE is a Lisp object. | |
727 | |
728 If VARIABLE has a `custom-set' property, that is used for setting | |
729 VARIABLE, otherwise `set-default' is used. | |
730 | |
731 The `customized-value' property of the VARIABLE will be set to a list | |
732 with a quoted VALUE as its sole list member. | |
733 | |
734 If VARIABLE has a `variable-interactive' property, that is used as if | |
735 it were the arg to `interactive' (which see) to interactively read the value. | |
736 | |
737 If VARIABLE has a `custom-type' property, it must be a widget and the | |
738 `:prompt-value' property of that widget will be used for reading the value. " t nil) | |
715 | 739 |
716 (autoload 'customize "cus-edit" "\ | 740 (autoload 'customize "cus-edit" "\ |
741 Customize SYMBOL, which must be a customization group." t nil) | |
742 | |
743 (autoload 'customize-other-window "cus-edit" "\ | |
717 Customize SYMBOL, which must be a customization group." t nil) | 744 Customize SYMBOL, which must be a customization group." t nil) |
718 | 745 |
719 (autoload 'customize-variable "cus-edit" "\ | 746 (autoload 'customize-variable "cus-edit" "\ |
720 Customize SYMBOL, which must be a variable." t nil) | 747 Customize SYMBOL, which must be a variable." t nil) |
721 | 748 |
729 | 756 |
730 (autoload 'customize-face-other-window "cus-edit" "\ | 757 (autoload 'customize-face-other-window "cus-edit" "\ |
731 Show customization buffer for FACE in other window." t nil) | 758 Show customization buffer for FACE in other window." t nil) |
732 | 759 |
733 (autoload 'customize-customized "cus-edit" "\ | 760 (autoload 'customize-customized "cus-edit" "\ |
734 Customize all already customized user options." t nil) | 761 Customize all user options set since the last save in this session." t nil) |
762 | |
763 (autoload 'customize-saved "cus-edit" "\ | |
764 Customize all already saved user options." t nil) | |
735 | 765 |
736 (autoload 'customize-apropos "cus-edit" "\ | 766 (autoload 'customize-apropos "cus-edit" "\ |
737 Customize all user options matching REGEXP. | 767 Customize all user options matching REGEXP. |
738 If ALL (e.g., started with a prefix key), include options which are not | 768 If ALL (e.g., started with a prefix key), include options which are not |
739 user-settable." t nil) | 769 user-settable." t nil) |
740 | 770 |
741 (autoload 'custom-buffer-create "cus-edit" "\ | 771 (autoload 'custom-buffer-create "cus-edit" "\ |
742 Create a buffer containing OPTIONS. | 772 Create a buffer containing OPTIONS. |
773 Optional NAME is the name of the buffer. | |
743 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where | 774 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where |
744 SYMBOL is a customization option, and WIDGET is a widget for editing | 775 SYMBOL is a customization option, and WIDGET is a widget for editing |
745 that option." nil nil) | 776 that option." nil nil) |
777 | |
778 (autoload 'custom-buffer-create-other-window "cus-edit" "\ | |
779 Create a buffer containing OPTIONS. | |
780 Optional NAME is the name of the buffer. | |
781 OPTIONS should be an alist of the form ((SYMBOL WIDGET)...), where | |
782 SYMBOL is a customization option, and WIDGET is a widget for editing | |
783 that option." nil nil) | |
784 | |
785 (autoload 'custom-save-customized "cus-edit" "\ | |
786 Save all user options which have been set in this session." t nil) | |
746 | 787 |
747 (autoload 'custom-save-all "cus-edit" "\ | 788 (autoload 'custom-save-all "cus-edit" "\ |
748 Save all customizations in `custom-file'." nil nil) | 789 Save all customizations in `custom-file'." nil nil) |
749 | 790 |
750 (autoload 'custom-menu-create "cus-edit" "\ | 791 (autoload 'custom-menu-create "cus-edit" "\ |
779 | 820 |
780 See `defface' for the format of SPEC." nil nil) | 821 See `defface' for the format of SPEC." nil nil) |
781 | 822 |
782 ;;;*** | 823 ;;;*** |
783 | 824 |
784 ;;;### (autoloads (widget-browse-other-window widget-browse widget-browse-at) "wid-browse" "custom/wid-browse.el") | 825 ;;;### (autoloads (widget-minor-mode widget-browse-other-window widget-browse widget-browse-at) "wid-browse" "custom/wid-browse.el") |
785 | 826 |
786 (autoload 'widget-browse-at "wid-browse" "\ | 827 (autoload 'widget-browse-at "wid-browse" "\ |
787 Browse the widget under point." t nil) | 828 Browse the widget under point." t nil) |
788 | 829 |
789 (autoload 'widget-browse "wid-browse" "\ | 830 (autoload 'widget-browse "wid-browse" "\ |
790 Create a widget browser for WIDGET." t nil) | 831 Create a widget browser for WIDGET." t nil) |
791 | 832 |
792 (autoload 'widget-browse-other-window "wid-browse" "\ | 833 (autoload 'widget-browse-other-window "wid-browse" "\ |
793 Show widget browser for WIDGET in other window." t nil) | 834 Show widget browser for WIDGET in other window." t nil) |
794 | 835 |
795 ;;;*** | 836 (autoload 'widget-minor-mode "wid-browse" "\ |
796 | 837 Togle minor mode for traversing widgets. |
797 ;;;### (autoloads (widget-delete widget-create widget-apply) "wid-edit" "custom/wid-edit.el") | 838 With arg, turn widget mode on if and only if arg is positive." t nil) |
839 | |
840 ;;;*** | |
841 | |
842 ;;;### (autoloads (widget-delete widget-create widget-prompt-value widget-apply) "wid-edit" "custom/wid-edit.el") | |
798 | 843 |
799 (autoload 'widget-apply "wid-edit" "\ | 844 (autoload 'widget-apply "wid-edit" "\ |
800 Apply the value of WIDGET's PROPERTY to the widget itself. | 845 Apply the value of WIDGET's PROPERTY to the widget itself. |
801 ARGS are passed as extra arguments to the function." nil nil) | 846 ARGS are passed as extra arguments to the function." nil nil) |
847 | |
848 (autoload 'widget-prompt-value "wid-edit" "\ | |
849 Prompt for a value matching WIDGET, using PROMPT. | |
850 The current value is assumed to be VALUE, unless UNBOUND is non-nil." nil nil) | |
802 | 851 |
803 (autoload 'widget-create "wid-edit" "\ | 852 (autoload 'widget-create "wid-edit" "\ |
804 Create widget of TYPE. | 853 Create widget of TYPE. |
805 The optional ARGS are additional keyword arguments." nil nil) | 854 The optional ARGS are additional keyword arguments." nil nil) |
806 | 855 |
2981 | 3030 |
2982 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. | 3031 Turning on Asm mode runs the hook `asm-mode-hook' at the end of initialization. |
2983 | 3032 |
2984 Special commands: | 3033 Special commands: |
2985 \\{asm-mode-map} | 3034 \\{asm-mode-map} |
3035 " t nil) | |
3036 | |
3037 ;;;*** | |
3038 | |
3039 ;;;### (autoloads (autoconf-mode) "autoconf-mode" "modes/autoconf-mode.el") | |
3040 | |
3041 (autoload 'autoconf-mode "autoconf-mode" "\ | |
3042 A major-mode to edit autoconf input files like configure.in | |
3043 \\{autoconf-mode-map} | |
2986 " t nil) | 3044 " t nil) |
2987 | 3045 |
2988 ;;;*** | 3046 ;;;*** |
2989 | 3047 |
2990 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el") | 3048 ;;;### (autoloads (awk-mode) "awk-mode" "modes/awk-mode.el") |
3629 ;;;*** | 3687 ;;;*** |
3630 | 3688 |
3631 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") | 3689 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") |
3632 | 3690 |
3633 (autoload 'ksh-mode "ksh-mode" "\ | 3691 (autoload 'ksh-mode "ksh-mode" "\ |
3634 ksh-mode $Revision: 1.27 $ - Major mode for editing (Bourne, Korn or Bourne again) | 3692 ksh-mode $Revision: 1.28 $ - Major mode for editing (Bourne, Korn or Bourne again) |
3635 shell scripts. | 3693 shell scripts. |
3636 Special key bindings and commands: | 3694 Special key bindings and commands: |
3637 \\{ksh-mode-map} | 3695 \\{ksh-mode-map} |
3638 Variables controlling indentation style: | 3696 Variables controlling indentation style: |
3639 ksh-indent | 3697 ksh-indent |
3737 (setq ksh-brace-offset -8) | 3795 (setq ksh-brace-offset -8) |
3738 (setq ksh-tab-always-indent t) | 3796 (setq ksh-tab-always-indent t) |
3739 (setq ksh-match-and-tell t) | 3797 (setq ksh-match-and-tell t) |
3740 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment | 3798 (setq ksh-align-to-keyword t) ;; Turn on keyword alignment |
3741 )))" t nil) | 3799 )))" t nil) |
3742 | |
3743 ;;;*** | |
3744 | |
3745 ;;;### (autoloads (m4-mode) "m4-mode" "modes/m4-mode.el") | |
3746 | |
3747 (autoload 'm4-mode "m4-mode" "\ | |
3748 A major-mode to edit m4 macro files | |
3749 \\{m4-mode-map} | |
3750 " t nil) | |
3751 | 3800 |
3752 ;;;*** | 3801 ;;;*** |
3753 | 3802 |
3754 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el") | 3803 ;;;### (autoloads (define-mail-alias build-mail-aliases mail-aliases-setup) "mail-abbrevs" "modes/mail-abbrevs.el") |
3755 | 3804 |
4990 | 5039 |
4991 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") | 5040 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") |
4992 | 5041 |
4993 (autoload 'vhdl-mode "vhdl-mode" "\ | 5042 (autoload 'vhdl-mode "vhdl-mode" "\ |
4994 Major mode for editing VHDL code. | 5043 Major mode for editing VHDL code. |
4995 vhdl-mode $Revision: 1.27 $ | 5044 vhdl-mode $Revision: 1.28 $ |
4996 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a | 5045 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a |
4997 vhdl-mode buffer. This automatically sets up a mail buffer with version | 5046 vhdl-mode buffer. This automatically sets up a mail buffer with version |
4998 information already added. You just need to add a description of the | 5047 information already added. You just need to add a description of the |
4999 problem, including a reproducible test case and send the message. | 5048 problem, including a reproducible test case and send the message. |
5000 | 5049 |
6337 \\[sc-cvs-file-status] show the CVS status of current file | 6386 \\[sc-cvs-file-status] show the CVS status of current file |
6338 " t nil) | 6387 " t nil) |
6339 | 6388 |
6340 ;;;*** | 6389 ;;;*** |
6341 | 6390 |
6342 ;;;### (autoloads (gnuserv-start) "gnuserv" "packages/gnuserv.el") | 6391 ;;;### (autoloads (gnuserv-edit gnuserv-start) "gnuserv" "packages/gnuserv.el") |
6343 | 6392 |
6344 (defvar gnuserv-frame nil "\ | 6393 (defcustom gnuserv-frame nil "*The frame to be used to display all edited files.\nIf nil, then a new frame is created for each file edited.\nIf t, then the currently selected frame will be used.\nIf a function, then this will be called with a symbol `x' or `tty' as the\nonly argument, and its return value will be interpreted as above." :tag "Gnuserv Frame" :type '(radio (const :tag "Create new frame each time" nil) (const :tag "Use selected frame" t) (function-item :tag "Use main Emacs frame" gnuserv-main-frame-function) (function-item :tag "Use visible frame, otherwise create new" gnuserv-visible-frame-function) (function-item :tag "Create special Gnuserv frame and use it" gnuserv-special-frame-function) (function :tag "Other")) :group 'gnuserv) |
6345 *If non-nil, the frame to be used to display all edited files. | |
6346 If nil, then a new frame is created for each file edited. | |
6347 This variable has no effect in XEmacs versions older than 19.9.") | |
6348 | 6394 |
6349 (autoload 'gnuserv-start "gnuserv" "\ | 6395 (autoload 'gnuserv-start "gnuserv" "\ |
6350 Allow this Emacs process to be a server for client processes. | 6396 Allow this Emacs process to be a server for client processes. |
6351 This starts a server communications subprocess through which | 6397 This starts a gnuserv communications subprocess through which |
6352 client \"editors\" (gnuclient and gnudoit) can send editing commands to | 6398 client \"editors\" (gnuclient and gnudoit) can send editing commands to |
6353 this Emacs job. See the gnuserv(1) manual page for more details. | 6399 this Emacs job. See the gnuserv(1) manual page for more details. |
6354 | 6400 |
6355 Prefix arg means just kill any existing server communications subprocess." t nil) | 6401 Prefix arg means just kill any existing server communications subprocess." t nil) |
6402 | |
6403 (autoload 'gnuserv-edit "gnuserv" "\ | |
6404 Mark the current gnuserv editing buffer as \"done\", and switch to next one. | |
6405 | |
6406 The `gnuserv-done-function' is used to dispose of the buffer after marking it | |
6407 as done; it is `kill-buffer' by default. | |
6408 | |
6409 Files that match `gnuserv-temp-file-regexp' are considered temporary and | |
6410 are saved unconditionally and backed up if `gnuserv-make-temp-file-backup' | |
6411 is non-nil. They are disposed of using `gnuserv-done-temp-file-function'. | |
6412 | |
6413 When all of a client's buffers are marked as \"done\", the client is notified. | |
6414 | |
6415 If invoked with a prefix argument, or if there is no gnuserv process | |
6416 running, only starts server process. Invoked with \\[gnuserv-edit]." t nil) | |
6417 | |
6418 (global-set-key "#" 'gnuserv-edit) | |
6356 | 6419 |
6357 ;;;*** | 6420 ;;;*** |
6358 | 6421 |
6359 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el") | 6422 ;;;### (autoloads (gopher-atpoint gopher) "gopher" "packages/gopher.el") |
6360 | 6423 |
8994 (autoload 'forms-find-file-other-window "forms" "\ | 9057 (autoload 'forms-find-file-other-window "forms" "\ |
8995 Visit a file in Forms mode in other window." t nil) | 9058 Visit a file in Forms mode in other window." t nil) |
8996 | 9059 |
8997 ;;;*** | 9060 ;;;*** |
8998 | 9061 |
9062 ;;;### (autoloads (unhide-copyleft-region hide-copyleft-region) "hide-copyleft" "utils/hide-copyleft.el") | |
9063 | |
9064 (autoload 'hide-copyleft-region "hide-copyleft" "\ | |
9065 Make the legal drivel at the front of this file invisible. Unhide it again | |
9066 with C-u \\[hide-copyleft-region]." t nil) | |
9067 | |
9068 (autoload 'unhide-copyleft-region "hide-copyleft" "\ | |
9069 If the legal nonsense at the top of this file is elided, make it visible again." nil nil) | |
9070 | |
9071 ;;;*** | |
9072 | |
8999 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el") | 9073 ;;;### (autoloads (highlight-headers-follow-url highlight-headers-follow-url-mosaic highlight-headers-follow-url-netscape highlight-headers) "highlight-headers" "utils/highlight-headers.el") |
9000 | 9074 |
9001 (autoload 'highlight-headers "highlight-headers" "\ | 9075 (autoload 'highlight-headers "highlight-headers" "\ |
9002 Highlight message headers between start and end. | 9076 Highlight message headers between start and end. |
9003 Faces used: | 9077 Faces used: |