Mercurial > hg > xemacs-beta
comparison lisp/prim/auto-autoloads.el @ 142:1856695b1fa9 r20-2b5
Import from CVS: tag r20-2b5
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:33:18 +0200 |
parents | b980b6286996 |
children | 318232e2a3f0 |
comparison
equal
deleted
inserted
replaced
141:ea67ad3963dc | 142:1856695b1fa9 |
---|---|
1057 | 1057 |
1058 (defvar dired-listing-switches "-al" "\ | 1058 (defvar dired-listing-switches "-al" "\ |
1059 *Switches passed to ls for dired. MUST contain the `l' option. | 1059 *Switches passed to ls for dired. MUST contain the `l' option. |
1060 Can contain even `F', `b', `i' and `s'.") | 1060 Can contain even `F', `b', `i' and `s'.") |
1061 | 1061 |
1062 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v)) "chown" "/etc/chown") "\ | 1062 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v linux)) "chown" "/etc/chown") "\ |
1063 *Name of chown command (usually `chown' or `/etc/chown').") | 1063 *Name of chown command (usually `chown' or `/etc/chown').") |
1064 | 1064 |
1065 (defvar dired-gnutar-program nil "\ | 1065 (defvar dired-gnutar-program nil "\ |
1066 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\"). | 1066 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\"). |
1067 GNU tar's `z' switch is used for compressed tar files. | 1067 GNU tar's `z' switch is used for compressed tar files. |
3629 ;;;*** | 3629 ;;;*** |
3630 | 3630 |
3631 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") | 3631 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") |
3632 | 3632 |
3633 (autoload 'ksh-mode "ksh-mode" "\ | 3633 (autoload 'ksh-mode "ksh-mode" "\ |
3634 ksh-mode $Revision: 1.24 $ - Major mode for editing (Bourne, Korn or Bourne again) | 3634 ksh-mode $Revision: 1.25 $ - Major mode for editing (Bourne, Korn or Bourne again) |
3635 shell scripts. | 3635 shell scripts. |
3636 Special key bindings and commands: | 3636 Special key bindings and commands: |
3637 \\{ksh-mode-map} | 3637 \\{ksh-mode-map} |
3638 Variables controlling indentation style: | 3638 Variables controlling indentation style: |
3639 ksh-indent | 3639 ksh-indent |
4990 | 4990 |
4991 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") | 4991 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") |
4992 | 4992 |
4993 (autoload 'vhdl-mode "vhdl-mode" "\ | 4993 (autoload 'vhdl-mode "vhdl-mode" "\ |
4994 Major mode for editing VHDL code. | 4994 Major mode for editing VHDL code. |
4995 vhdl-mode $Revision: 1.24 $ | 4995 vhdl-mode $Revision: 1.25 $ |
4996 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a | 4996 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 | 4997 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 | 4998 information already added. You just need to add a description of the |
4999 problem, including a reproducible test case and send the message. | 4999 problem, including a reproducible test case and send the message. |
5000 | 5000 |
5893 | 5893 |
5894 ;;;*** | 5894 ;;;*** |
5895 | 5895 |
5896 ;;;### (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" "packages/etags.el") | 5896 ;;;### (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" "packages/etags.el") |
5897 | 5897 |
5898 (defvar tags-build-completion-table 'ask "\ | 5898 (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) |
5899 *If this variable is nil, then tags completion is disabled. | 5899 |
5900 If this variable is t, then things which prompt for tags will do so with | 5900 (defcustom tags-always-exact nil "*If this variable is non-nil, then tags always looks for exact matches." :type 'boolean :group 'etags) |
5901 completion across all known tags. | 5901 |
5902 If this variable is the symbol `ask', then you will be asked whether each | 5902 (defcustom tag-table-alist nil "*A list which determines which tags files should be active for a \ngiven buffer. This is not really an association list, in that all \nelements are checked. The CAR of each element of this list is a \npattern against which the buffer's file name is compared; if it \nmatches, then the CDR of the list should be the name of the tags\ntable to use. If more than one element of this list matches the\nbuffer's file name, then all of the associated tags tables will be\nused. Earlier ones will be searched 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 regexp sexp)) :group 'etags) |
5903 tags table should be added to the completion list as it is read in. | |
5904 (With the exception that for very small tags tables, you will not be asked, | |
5905 since they can be parsed quickly.)") | |
5906 | |
5907 (defvar tags-always-exact nil "\ | |
5908 *If this variable is non-nil, then tags always looks for exact matches.") | |
5909 | |
5910 (defvar tag-table-alist nil "\ | |
5911 *A list which determines which tags files should be active for a | |
5912 given buffer. This is not really an association list, in that all | |
5913 elements are checked. The CAR of each element of this list is a | |
5914 pattern against which the buffer's file name is compared; if it | |
5915 matches, then the CDR of the list should be the name of the tags | |
5916 table to use. If more than one element of this list matches the | |
5917 buffer's file name, then all of the associated tags tables will be | |
5918 used. Earlier ones will be searched first. | |
5919 | |
5920 If the CAR of elements of this list are strings, then they are treated | |
5921 as regular-expressions against which the file is compared (like the | |
5922 auto-mode-alist). If they are not strings, then they are evaluated. | |
5923 If they evaluate to non-nil, then the current buffer is considered to | |
5924 match. | |
5925 | |
5926 If the CDR of the elements of this list are strings, then they are | |
5927 assumed to name a TAGS file. If they name a directory, then the string | |
5928 \"TAGS\" is appended to them to get the file name. If they are not | |
5929 strings, then they are evaluated, and must return an appropriate string. | |
5930 | |
5931 For example: | |
5932 (setq tag-table-alist | |
5933 '((\"/usr/src/public/perl/\" . \"/usr/src/public/perl/perl-3.0/\") | |
5934 (\"\\\\.el$\" . \"/usr/local/emacs/src/\") | |
5935 (\"/jbw/gnu/\" . \"/usr15/degree/stud/jbw/gnu/\") | |
5936 (\"\" . \"/usr/local/emacs/src/\") | |
5937 )) | |
5938 | |
5939 This means that anything in the /usr/src/public/perl/ directory should use | |
5940 the TAGS file /usr/src/public/perl/perl-3.0/TAGS; and file ending in .el should | |
5941 use the TAGS file /usr/local/emacs/src/TAGS; and anything in or below the | |
5942 directory /jbw/gnu/ should use the TAGS file /usr15/degree/stud/jbw/gnu/TAGS. | |
5943 A file called something like \"/usr/jbw/foo.el\" would use both the TAGS files | |
5944 /usr/local/emacs/src/TAGS and /usr15/degree/stud/jbw/gnu/TAGS (in that order) | |
5945 because it matches both patterns. | |
5946 | |
5947 If the buffer-local variable `buffer-tag-table' is set, then it names a tags | |
5948 table that is searched before all others when find-tag is executed from this | |
5949 buffer. | |
5950 | |
5951 If there is a file called \"TAGS\" in the same directory as the file in | |
5952 question, then that tags file will always be used as well (after the | |
5953 `buffer-tag-table' but before the tables specified by this list.) | |
5954 | |
5955 If the variable tags-file-name is set, then the tags file it names will apply | |
5956 to all buffers (for backwards compatibility.) It is searched first. | |
5957 ") | |
5958 | 5903 |
5959 (autoload 'visit-tags-table "etags" "\ | 5904 (autoload 'visit-tags-table "etags" "\ |
5960 Tell tags commands to use tags table file FILE first. | 5905 Tell tags commands to use tags table file FILE first. |
5961 FILE should be the name of a file created with the `etags' program. | 5906 FILE should be the name of a file created with the `etags' program. |
5962 A directory name is ok too; it means file TAGS in that directory." t nil) | 5907 A directory name is ok too; it means file TAGS in that directory." t nil) |