Mercurial > hg > xemacs-beta
comparison lisp/auto-autoloads.el @ 223:2c611d1463a6 r20-4b10
Import from CVS: tag r20-4b10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 10:10:54 +0200 |
parents | 262b8bb4a523 |
children | 12579d965149 |
comparison
equal
deleted
inserted
replaced
222:aae4c8b01452 | 223:2c611d1463a6 |
---|---|
520 | 520 |
521 Batch usage: xemacs -batch -l cus-dep.el -f Custom-make-dependencies DIRS" t nil) | 521 Batch usage: xemacs -batch -l cus-dep.el -f Custom-make-dependencies DIRS" t nil) |
522 | 522 |
523 ;;;*** | 523 ;;;*** |
524 | 524 |
525 ;;;### (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-variable customize-other-window customize customize-save-variable customize-set-variable customize-set-value) "cus-edit" "lisp/cus-edit.el") | 525 ;;;### (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-changed-options customize-variable customize-other-window customize customize-save-variable customize-set-variable customize-set-value) "cus-edit" "lisp/cus-edit.el") |
526 | 526 |
527 (autoload 'customize-set-value "cus-edit" "\ | 527 (autoload 'customize-set-value "cus-edit" "\ |
528 Set VARIABLE to VALUE. VALUE is a Lisp object. | 528 Set VARIABLE to VALUE. VALUE is a Lisp object. |
529 | 529 |
530 If VARIABLE has a `variable-interactive' property, that is used as if | 530 If VARIABLE has a `variable-interactive' property, that is used as if |
576 | 576 |
577 (defalias 'customize-option 'customize-variable) | 577 (defalias 'customize-option 'customize-variable) |
578 | 578 |
579 (autoload 'customize-variable "cus-edit" "\ | 579 (autoload 'customize-variable "cus-edit" "\ |
580 Customize SYMBOL, which must be a user option variable." t nil) | 580 Customize SYMBOL, which must be a user option variable." t nil) |
581 | |
582 (autoload 'customize-changed-options "cus-edit" "\ | |
583 Customize all user option variables whose default values changed recently. | |
584 This means, in other words, variables defined with a `:new' option." t nil) | |
581 | 585 |
582 (defalias 'customize-variable-other-window 'customize-option-other-window) | 586 (defalias 'customize-variable-other-window 'customize-option-other-window) |
583 | 587 |
584 (autoload 'customize-option-other-window "cus-edit" "\ | 588 (autoload 'customize-option-other-window "cus-edit" "\ |
585 Customize SYMBOL, which must be a user option variable. | 589 Customize SYMBOL, which must be a user option variable. |
722 | 726 |
723 ;;;### (autoloads nil "easymenu" "lisp/easymenu.el") | 727 ;;;### (autoloads nil "easymenu" "lisp/easymenu.el") |
724 | 728 |
725 ;;;*** | 729 ;;;*** |
726 | 730 |
727 ;;;### (autoloads (tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file find-tag-other-window find-tag visit-tags-table) "etags" "lisp/etags.el") | 731 ;;;### (autoloads (tags-apropos list-tags tags-query-replace tags-search tags-loop-continue next-file tag-complete-symbol find-tag-other-window find-tag visit-tags-table) "etags" "lisp/etags.el") |
728 | |
729 (defcustom tags-build-completion-table 'ask "*If this variable is nil, then tags completion is disabled.\nIf this variable is t, then things which prompt for tags will do so with \n completion across all known tags.\nIf this variable is the symbol `ask', then you will be asked whether each\n tags table should be added to the completion list as it is read in.\n (With the exception that for very small tags tables, you will not be asked,\n since they can be parsed quickly.)" :type '(radio (const :tag "Disabled" nil) (const :tag "Complete All" t) (const :tag "Ask" ask)) :group 'etags) | |
730 | |
731 (defcustom tags-always-exact nil "*If this variable is non-nil, then tags always looks for exact matches." :type 'boolean :group 'etags) | |
732 | |
733 (defcustom tag-table-alist nil "*A list which determines which tags files are active for a buffer.\nThis is not really an association list, in that all elements are\nchecked. The CAR of each element of this list is a pattern against\nwhich the buffer's file name is compared; if it matches, then the CDR\nof the list should be the name of the tags table to use. If more than\none element of this list matches the buffer's file name, then all of\nthe associated tags tables will be used. Earlier ones will be\nsearched first.\n\nIf the CAR of elements of this list are strings, then they are treated\nas regular-expressions against which the file is compared (like the\nauto-mode-alist). If they are not strings, then they are evaluated.\nIf they evaluate to non-nil, then the current buffer is considered to\nmatch.\n\nIf the CDR of the elements of this list are strings, then they are\nassumed to name a TAGS file. If they name a directory, then the string\n\"TAGS\" is appended to them to get the file name. If they are not \nstrings, then they are evaluated, and must return an appropriate string.\n\nFor example:\n (setq tag-table-alist\n '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\")\n (\"\\\\.el$\" . \"/usr/local/emacs/src/\")\n (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\")\n (\"\" . \"/usr/local/emacs/src/\")\n ))\n\nThis means that anything in the /usr/src/public/perl/ directory should use\nthe TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should\nuse the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the\ndirectory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS.\nA file called something like \"/usr/jbw/foo.el\" would use both the TAGS files\n/usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order)\nbecause it matches both patterns.\n\nIf the buffer-local variable `buffer-tag-table' is set, then it names a tags\ntable that is searched before all others when find-tag is executed from this\nbuffer.\n\nIf there is a file called \"TAGS\" in the same directory as the file in \nquestion, then that tags file will always be used as well (after the\n`buffer-tag-table' but before the tables specified by this list.)\n\nIf the variable tags-file-name is set, then the tags file it names will apply\nto all buffers (for backwards compatibility.) It is searched first.\n" :type '(repeat (cons (choice :value "" (regexp :tag "Buffer regexp") (function :tag "Expression")) (string :tag "Tag file or directory"))) :group 'etags) | |
734 | 732 |
735 (autoload 'visit-tags-table "etags" "\ | 733 (autoload 'visit-tags-table "etags" "\ |
736 Tell tags commands to use tags table file FILE first. | 734 Tell tags commands to use tags table file FILE when all else fails. |
737 FILE should be the name of a file created with the `etags' program. | 735 FILE should be the name of a file created with the `etags' program. |
738 A directory name is ok too; it means file TAGS in that directory." t nil) | 736 A directory name is ok too; it means file TAGS in that directory." t nil) |
739 | 737 |
740 (autoload 'find-tag "etags" "\ | 738 (autoload 'find-tag "etags" "\ |
741 *Find tag whose name contains TAGNAME. | 739 *Find tag whose name contains TAGNAME. |
780 tags-build-completion-table controls completion behavior | 778 tags-build-completion-table controls completion behavior |
781 buffer-tag-table another way of specifying a buffer-local table | 779 buffer-tag-table another way of specifying a buffer-local table |
782 make-tags-files-invisible whether tags tables should be very hidden | 780 make-tags-files-invisible whether tags tables should be very hidden |
783 tag-mark-stack-max how many tags-based hops to remember" t nil) | 781 tag-mark-stack-max how many tags-based hops to remember" t nil) |
784 | 782 |
783 (autoload 'tag-complete-symbol "etags" "\ | |
784 The function used to do tags-completion (using 'tag-completion-predicate)." t nil) | |
785 | |
785 (autoload 'next-file "etags" "\ | 786 (autoload 'next-file "etags" "\ |
786 Select next file among files in current tag table(s). | 787 Select next file among files in current tag table(s). |
787 | 788 |
788 A first argument of t (prefix arg, if interactive) initializes to the | 789 A first argument of t (prefix arg, if interactive) initializes to the |
789 beginning of the list of files in the (first) tags table. If the argument | 790 beginning of the list of files in the (first) tags table. If the argument |
819 with the command \\[tags-loop-continue]. | 820 with the command \\[tags-loop-continue]. |
820 | 821 |
821 See documentation of variable `tag-table-alist'." t nil) | 822 See documentation of variable `tag-table-alist'." t nil) |
822 | 823 |
823 (autoload 'list-tags "etags" "\ | 824 (autoload 'list-tags "etags" "\ |
824 Display list of tags in file FILE. | 825 Display list of tags in FILE." t nil) |
825 FILE should not contain a directory spec | |
826 unless it has one in the tag table." t nil) | |
827 | 826 |
828 (autoload 'tags-apropos "etags" "\ | 827 (autoload 'tags-apropos "etags" "\ |
829 Display list of all tags in tag table REGEXP matches." t nil) | 828 Display list of all tags in tag table REGEXP matches." t nil) |
830 | 829 |
830 (define-key esc-map "*" 'pop-tag-mark) | |
831 | |
831 ;;;*** | 832 ;;;*** |
832 | 833 |
833 ;;;### (autoloads (font-lock-set-defaults-1 font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "lisp/font-lock.el") | 834 ;;;### (autoloads (font-lock-set-defaults-1 font-lock-fontify-buffer turn-off-font-lock turn-on-font-lock font-lock-mode) "font-lock" "lisp/font-lock.el") |
834 | 835 |
835 (defvar font-lock-auto-fontify t "\ | 836 (defcustom font-lock-auto-fontify t "*Whether font-lock should automatically fontify files as they're loaded.\nThis will only happen if font-lock has fontifying keywords for the major\nmode of the file. You can get finer-grained control over auto-fontification\nby using this variable in combination with `font-lock-mode-enable-list' or\n`font-lock-mode-disable-list'." :type 'boolean :group 'font-lock) |
836 *Whether font-lock should automatically fontify files as they're loaded. | 837 |
837 This will only happen if font-lock has fontifying keywords for the major | 838 (defcustom font-lock-mode-enable-list nil "*List of modes to auto-fontify, if `font-lock-auto-fontify' is nil." :type '(repeat (symbol :tag "Mode")) :group 'font-lock) |
838 mode of the file. You can get finer-grained control over auto-fontification | 839 |
839 by using this variable in combination with `font-lock-mode-enable-list' or | 840 (defcustom font-lock-mode-disable-list nil "*List of modes not to auto-fontify, if `font-lock-auto-fontify' is t." :type '(repeat (symbol :tag "Mode")) :group 'font-lock) |
840 `font-lock-mode-disable-list'.") | 841 |
841 | 842 (defcustom font-lock-use-colors '(color) "*Specification for when Font Lock will set up color defaults.\nNormally this should be '(color), meaning that Font Lock will set up\ncolor defaults that are only used on color displays. Set this to nil\nif you don't want Font Lock to set up color defaults at all. This\nshould be one of\n\n-- a list of valid tags, meaning that the color defaults will be used\n when all of the tags apply. (e.g. '(color x))\n-- a list whose first element is 'or and whose remaining elements are\n lists of valid tags, meaning that the defaults will be used when\n any of the tag lists apply.\n-- nil, meaning that the defaults should not be set up at all.\n\n(If you specify face values in your init file, they will override any\nthat Font Lock specifies, regardless of whether you specify the face\nvalues before or after loading Font Lock.)\n\nSee also `font-lock-use-fonts'. If you want more control over the faces\nused for fontification, see the documentation of `font-lock-mode' for\nhow to do it." :type 'sexp :group 'font-lock) |
842 (defvar font-lock-mode-enable-list nil "\ | 843 |
843 *List of modes to auto-fontify, if `font-lock-auto-fontify' is nil.") | 844 (defcustom font-lock-use-fonts '(or (mono) (grayscale)) "*Specification for when Font Lock will set up non-color defaults.\n\nNormally this should be '(or (mono) (grayscale)), meaning that Font\nLock will set up non-color defaults that are only used on either mono\nor grayscale displays. Set this to nil if you don't want Font Lock to\nset up non-color defaults at all. This should be one of\n\n-- a list of valid tags, meaning that the non-color defaults will be used\n when all of the tags apply. (e.g. '(grayscale x))\n-- a list whose first element is 'or and whose remaining elements are\n lists of valid tags, meaning that the defaults will be used when\n any of the tag lists apply.\n-- nil, meaning that the defaults should not be set up at all.\n\n(If you specify face values in your init file, they will override any\nthat Font Lock specifies, regardless of whether you specify the face\nvalues before or after loading Font Lock.)\n\nSee also `font-lock-use-colors'. If you want more control over the faces\nused for fontification, see the documentation of `font-lock-mode' for\nhow to do it." :type 'sexp :group 'font-lock) |
844 | 845 |
845 (defvar font-lock-mode-disable-list nil "\ | 846 (defcustom font-lock-maximum-decoration t "*If non-nil, the maximum decoration level for fontifying.\nIf nil, use the minimum decoration (equivalent to level 0).\nIf t, use the maximum decoration available.\nIf a number, use that level of decoration (or if not available the maximum).\nIf a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL),\nwhere MAJOR-MODE is a symbol or t (meaning the default). For example:\n ((c++-mode . 2) (c-mode . t) (t . 1))\nmeans use level 2 decoration for buffers in `c++-mode', the maximum decoration\navailable for buffers in `c-mode', and level 1 decoration otherwise." :type '(choice (const :tag "default" nil) (const :tag "maximum" t) (integer :tag "level" 1) (repeat :menu-tag "mode specific" :tag "mode specific" :value ((t . t)) (cons :tag "Instance" (radio :tag "Mode" (const :tag "all" t) (symbol :tag "name")) (radio :tag "Decoration" (const :tag "default" nil) (const :tag "maximum" t) (integer :tag "level" 1))))) :group 'font-lock) |
846 *List of modes not to auto-fontify, if `font-lock-auto-fontify' is t.") | |
847 | |
848 (defvar font-lock-use-colors '(color) "\ | |
849 *Specification for when Font Lock will set up color defaults. | |
850 Normally this should be '(color), meaning that Font Lock will set up | |
851 color defaults that are only used on color displays. Set this to nil | |
852 if you don't want Font Lock to set up color defaults at all. This | |
853 should be one of | |
854 | |
855 -- a list of valid tags, meaning that the color defaults will be used | |
856 when all of the tags apply. (e.g. '(color x)) | |
857 -- a list whose first element is 'or and whose remaining elements are | |
858 lists of valid tags, meaning that the defaults will be used when | |
859 any of the tag lists apply. | |
860 -- nil, meaning that the defaults should not be set up at all. | |
861 | |
862 \(If you specify face values in your init file, they will override any | |
863 that Font Lock specifies, regardless of whether you specify the face | |
864 values before or after loading Font Lock.) | |
865 | |
866 See also `font-lock-use-fonts'. If you want more control over the faces | |
867 used for fontification, see the documentation of `font-lock-mode' for | |
868 how to do it.") | |
869 | |
870 (defvar font-lock-use-fonts '(or (mono) (grayscale)) "\ | |
871 *Specification for when Font Lock will set up non-color defaults. | |
872 | |
873 Normally this should be '(or (mono) (grayscale)), meaning that Font | |
874 Lock will set up non-color defaults that are only used on either mono | |
875 or grayscale displays. Set this to nil if you don't want Font Lock to | |
876 set up non-color defaults at all. This should be one of | |
877 | |
878 -- a list of valid tags, meaning that the non-color defaults will be used | |
879 when all of the tags apply. (e.g. '(grayscale x)) | |
880 -- a list whose first element is 'or and whose remaining elements are | |
881 lists of valid tags, meaning that the defaults will be used when | |
882 any of the tag lists apply. | |
883 -- nil, meaning that the defaults should not be set up at all. | |
884 | |
885 \(If you specify face values in your init file, they will override any | |
886 that Font Lock specifies, regardless of whether you specify the face | |
887 values before or after loading Font Lock.) | |
888 | |
889 See also `font-lock-use-colors'. If you want more control over the faces | |
890 used for fontification, see the documentation of `font-lock-mode' for | |
891 how to do it.") | |
892 | |
893 (defvar font-lock-maximum-decoration nil "\ | |
894 *If non-nil, the maximum decoration level for fontifying. | |
895 If nil, use the minimum decoration (equivalent to level 0). | |
896 If t, use the maximum decoration available. | |
897 If a number, use that level of decoration (or if not available the maximum). | |
898 If a list, each element should be a cons pair of the form (MAJOR-MODE . LEVEL), | |
899 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
900 ((c++-mode . 2) (c-mode . t) (t . 1)) | |
901 means use level 2 decoration for buffers in `c++-mode', the maximum decoration | |
902 available for buffers in `c-mode', and level 1 decoration otherwise.") | |
903 | 847 |
904 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration) | 848 (define-obsolete-variable-alias 'font-lock-use-maximal-decoration 'font-lock-maximum-decoration) |
905 | 849 |
906 (defvar font-lock-maximum-size (* 250 1024) "\ | 850 (defcustom font-lock-maximum-size (* 250 1024) "*If non-nil, the maximum size for buffers for fontifying.\nOnly buffers less than this can be fontified when Font Lock mode is turned on.\nIf nil, means size is irrelevant.\nIf a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),\nwhere MAJOR-MODE is a symbol or t (meaning the default). For example:\n ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576))\nmeans that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one\nmegabyte for buffers in `rmail-mode', and size is irrelevant otherwise." :type '(choice (const :tag "none" nil) (integer :tag "size") (repeat :menu-tag "mode specific" :tag "mode specific" :value ((t)) (cons :tag "Instance" (radio :tag "Mode" (const :tag "all" t) (symbol :tag "name")) (radio :tag "Size" (const :tag "none" nil) (integer :tag "size"))))) :group 'font-lock) |
907 *If non-nil, the maximum size for buffers for fontifying. | |
908 Only buffers less than this can be fontified when Font Lock mode is turned on. | |
909 If nil, means size is irrelevant. | |
910 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE), | |
911 where MAJOR-MODE is a symbol or t (meaning the default). For example: | |
912 ((c++-mode . 256000) (c-mode . 256000) (rmail-mode . 1048576)) | |
913 means that the maximum size is 250K for buffers in `c++-mode' or `c-mode', one | |
914 megabyte for buffers in `rmail-mode', and size is irrelevant otherwise.") | |
915 | 851 |
916 (defvar font-lock-keywords nil "\ | 852 (defvar font-lock-keywords nil "\ |
917 *A list of the keywords to highlight. | 853 A list of the keywords to highlight. |
918 Each element should be of the form: | 854 Each element should be of the form: |
919 | 855 |
920 MATCHER | 856 MATCHER |
921 (MATCHER . MATCH) | 857 (MATCHER . MATCH) |
922 (MATCHER . FACENAME) | 858 (MATCHER . FACENAME) |
1100 | 1036 |
1101 Prefix arg means just kill any existing server communications subprocess." t nil) | 1037 Prefix arg means just kill any existing server communications subprocess." t nil) |
1102 | 1038 |
1103 ;;;*** | 1039 ;;;*** |
1104 | 1040 |
1105 ;;;### (autoloads nil "help-macro" "lisp/help-macro.el") | 1041 ;;;### (autoloads (help-read-key) "help-macro" "lisp/help-macro.el") |
1106 | 1042 |
1107 (defcustom three-step-help t "*Non-nil means give more info about Help command in three steps.\nThe three steps are simple prompt, prompt with all options,\nand window listing and describing the options.\nA value of nil means skip the middle step, so that\n\\[help-command] \\[help-command] gives the window that lists the options." :type 'boolean :group 'help-appearance) | 1043 (defcustom three-step-help t "*Non-nil means give more info about Help command in three steps.\nThe three steps are simple prompt, prompt with all options,\nand window listing and describing the options.\nA value of nil means skip the middle step, so that\n\\[help-command] \\[help-command] gives the window that lists the options." :type 'boolean :group 'help-appearance) |
1044 | |
1045 (autoload 'help-read-key "help-macro" nil nil nil) | |
1108 | 1046 |
1109 ;;;*** | 1047 ;;;*** |
1110 | 1048 |
1111 ;;;### (autoloads (hyper-apropos-popup-menu hyper-apropos-set-variable hyper-set-variable hyper-apropos-read-variable-symbol hyper-describe-function hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos) "hyper-apropos" "lisp/hyper-apropos.el") | 1049 ;;;### (autoloads (hyper-apropos-popup-menu hyper-apropos-set-variable hyper-set-variable hyper-apropos-read-variable-symbol hyper-describe-function hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos) "hyper-apropos" "lisp/hyper-apropos.el") |
1112 | 1050 |