Mercurial > hg > xemacs-beta
comparison lisp/prim/auto-autoloads.el @ 54:05472e90ae02 r19-16-pre2
Import from CVS: tag r19-16-pre2
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:57:55 +0200 |
parents | 8d2a9b52c682 |
children |
comparison
equal
deleted
inserted
replaced
53:875393c1a535 | 54:05472e90ae02 |
---|---|
1221 | 1221 |
1222 (defvar dired-listing-switches "-al" "\ | 1222 (defvar dired-listing-switches "-al" "\ |
1223 *Switches passed to ls for dired. MUST contain the `l' option. | 1223 *Switches passed to ls for dired. MUST contain the `l' option. |
1224 Can contain even `F', `b', `i' and `s'.") | 1224 Can contain even `F', `b', `i' and `s'.") |
1225 | 1225 |
1226 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v)) "chown" "/etc/chown") "\ | 1226 (defvar dired-chown-program (if (memq system-type '(hpux dgux usg-unix-v linux)) "chown" "/etc/chown") "\ |
1227 *Name of chown command (usually `chown' or `/etc/chown').") | 1227 *Name of chown command (usually `chown' or `/etc/chown').") |
1228 | 1228 |
1229 (defvar dired-gnutar-program nil "\ | 1229 (defvar dired-gnutar-program nil "\ |
1230 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\"). | 1230 *If non-nil, name of the GNU tar executable (e.g. \"tar\" or \"gnutar\"). |
1231 GNU tar's `z' switch is used for compressed tar files. | 1231 GNU tar's `z' switch is used for compressed tar files. |
1311 Use \\[dired-omit-toggle] to see these files. (buffer local)") | 1311 Use \\[dired-omit-toggle] to see these files. (buffer local)") |
1312 | 1312 |
1313 (defvar dired-mail-reader 'rmail "\ | 1313 (defvar dired-mail-reader 'rmail "\ |
1314 *Mail reader used by dired for dired-read-mail (\\[dired-read-mail]). | 1314 *Mail reader used by dired for dired-read-mail (\\[dired-read-mail]). |
1315 The symbols 'rmail and 'vm are the only two allowed values.") | 1315 The symbols 'rmail and 'vm are the only two allowed values.") |
1316 | |
1317 (defvar dired-refresh-automatically t "\ | |
1318 *If non-nil, refresh dired buffers automatically after file operations.") | |
1316 | 1319 |
1317 (define-key ctl-x-map "d" 'dired) | 1320 (define-key ctl-x-map "d" 'dired) |
1318 | 1321 |
1319 (autoload 'dired "dired" "\ | 1322 (autoload 'dired "dired" "\ |
1320 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. | 1323 \"Edit\" directory DIRNAME--delete, rename, print, etc. some files in it. |
1376 | 1379 |
1377 ;;;*** | 1380 ;;;*** |
1378 | 1381 |
1379 ;;;### (autoloads (remote-path-file-handler-function) "efs-dump" "efs/efs-dump.el") | 1382 ;;;### (autoloads (remote-path-file-handler-function) "efs-dump" "efs/efs-dump.el") |
1380 | 1383 |
1384 (or (assoc efs-path-root-regexp file-name-handler-alist) (setq file-name-handler-alist (cons (cons efs-path-root-regexp 'remote-path-file-handler-function) file-name-handler-alist))) | |
1385 | |
1386 (autoload 'remote-path-file-handler-function "efs-dump" "\ | |
1387 Function to call special file handlers for remote files." nil nil) | |
1388 | |
1389 ;;;*** | |
1390 | |
1391 ;;;### (autoloads nil "efs-fnh" "efs/efs-fnh.el") | |
1392 | |
1381 (defvar allow-remote-paths t "\ | 1393 (defvar allow-remote-paths t "\ |
1382 *Set this to nil if you don't want remote paths to access | 1394 *Set this to nil if you don't want remote paths to access |
1383 remote files.") | 1395 remote files.") |
1384 | |
1385 (or (assoc efs-path-root-regexp file-name-handler-alist) (setq file-name-handler-alist (cons (cons efs-path-root-regexp 'remote-path-file-handler-function) file-name-handler-alist))) | |
1386 | |
1387 (autoload 'remote-path-file-handler-function "efs-dump" "\ | |
1388 Function to call special file handlers for remote files." nil nil) | |
1389 | 1396 |
1390 ;;;*** | 1397 ;;;*** |
1391 | 1398 |
1392 ;;;### (autoloads (efs-root-file-name-completion efs-root-file-name-all-completions efs-set-passwd) "efs-netrc" "efs/efs-netrc.el") | 1399 ;;;### (autoloads (efs-root-file-name-completion efs-root-file-name-all-completions efs-set-passwd) "efs-netrc" "efs/efs-netrc.el") |
1393 | 1400 |
1887 | 1894 |
1888 (autoload 'gomoku "gomoku" "\ | 1895 (autoload 'gomoku "gomoku" "\ |
1889 Start a Gomoku game between you and Emacs. | 1896 Start a Gomoku game between you and Emacs. |
1890 If a game is in progress, this command allow you to resume it. | 1897 If a game is in progress, this command allow you to resume it. |
1891 If optional arguments N and M are given, an N by M board is used. | 1898 If optional arguments N and M are given, an N by M board is used. |
1892 If prefix arg is given for N, M is prompted for. | 1899 |
1893 | 1900 You and Emacs play in turn by marking a free square. You mark it with X |
1894 You and Emacs play in turn by marking a free square. You mark it with X | |
1895 and Emacs marks it with O. The winner is the first to get five contiguous | 1901 and Emacs marks it with O. The winner is the first to get five contiguous |
1896 marks horizontally, vertically or in diagonal. | 1902 marks horizontally, vertically or in diagonal. |
1897 | |
1898 You play by moving the cursor over the square you choose and hitting | 1903 You play by moving the cursor over the square you choose and hitting |
1899 \\<gomoku-mode-map>\\[gomoku-human-plays]. | 1904 \\<gomoku-mode-map>\\[gomoku-human-plays]. |
1900 Use \\[describe-mode] for more info." t nil) | 1905 Use \\[describe-mode] for more info." t nil) |
1901 | 1906 |
1902 ;;;*** | 1907 ;;;*** |
3574 | 3579 |
3575 ;;;*** | 3580 ;;;*** |
3576 | 3581 |
3577 ;;;### (autoloads (hide-ifdef-mode) "hideif" "modes/hideif.el") | 3582 ;;;### (autoloads (hide-ifdef-mode) "hideif" "modes/hideif.el") |
3578 | 3583 |
3579 (add-minor-mode 'hide-ifdef-mode " Ifdef") | |
3580 | |
3581 (autoload 'hide-ifdef-mode "hideif" "\ | 3584 (autoload 'hide-ifdef-mode "hideif" "\ |
3582 Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. | 3585 Toggle Hide-Ifdef mode. This is a minor mode, albeit a large one. |
3583 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. | 3586 With ARG, turn Hide-Ifdef mode on if arg is positive, off otherwise. |
3584 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor | 3587 In Hide-Ifdef mode, code within #ifdef constructs that the C preprocessor |
3585 would eliminate may be hidden from view. Several variables affect | 3588 would eliminate may be hidden from view. Several variables affect |
3734 ;;;*** | 3737 ;;;*** |
3735 | 3738 |
3736 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") | 3739 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") |
3737 | 3740 |
3738 (autoload 'ksh-mode "ksh-mode" "\ | 3741 (autoload 'ksh-mode "ksh-mode" "\ |
3739 ksh-mode $Revision: 1.19 $ - Major mode for editing (Bourne, Korn or Bourne again) | 3742 ksh-mode $Revision: 1.20 $ - Major mode for editing (Bourne, Korn or Bourne again) |
3740 shell scripts. | 3743 shell scripts. |
3741 Special key bindings and commands: | 3744 Special key bindings and commands: |
3742 \\{ksh-mode-map} | 3745 \\{ksh-mode-map} |
3743 Variables controlling indentation style: | 3746 Variables controlling indentation style: |
3744 ksh-indent | 3747 ksh-indent |
5009 | 5012 |
5010 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") | 5013 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") |
5011 | 5014 |
5012 (autoload 'vhdl-mode "vhdl-mode" "\ | 5015 (autoload 'vhdl-mode "vhdl-mode" "\ |
5013 Major mode for editing VHDL code. | 5016 Major mode for editing VHDL code. |
5014 vhdl-mode $Revision: 1.19 $ | 5017 vhdl-mode $Revision: 1.20 $ |
5015 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a | 5018 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a |
5016 vhdl-mode buffer. This automatically sets up a mail buffer with version | 5019 vhdl-mode buffer. This automatically sets up a mail buffer with version |
5017 information already added. You just need to add a description of the | 5020 information already added. You just need to add a description of the |
5018 problem, including a reproducible test case and send the message. | 5021 problem, including a reproducible test case and send the message. |
5019 | 5022 |
5318 Find change log file and add an entry for today. | 5321 Find change log file and add an entry for today. |
5319 Optional arg (interactive prefix) non-nil means prompt for user name and site. | 5322 Optional arg (interactive prefix) non-nil means prompt for user name and site. |
5320 Second arg is file name of change log. If nil, uses `change-log-default-name'. | 5323 Second arg is file name of change log. If nil, uses `change-log-default-name'. |
5321 Third arg OTHER-WINDOW non-nil means visit in other window. | 5324 Third arg OTHER-WINDOW non-nil means visit in other window. |
5322 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front; | 5325 Fourth arg NEW-ENTRY non-nil means always create a new entry at the front; |
5323 never append to an existing entry." t nil) | 5326 never append to an existing entry. Today's date is calculated according to |
5327 `change-log-time-zone-rule' if non-nil, otherwise in local time." t nil) | |
5324 | 5328 |
5325 (autoload 'add-change-log-entry-other-window "add-log" "\ | 5329 (autoload 'add-change-log-entry-other-window "add-log" "\ |
5326 Find change log file in other window and add an entry for today. | 5330 Find change log file in other window and add an entry for today. |
5327 Optional arg (interactive prefix) non-nil means prompt for user name and site. | 5331 Optional arg (interactive prefix) non-nil means prompt for user name and site. |
5328 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil) | 5332 Second arg is file name of change log. If nil, uses `change-log-default-name'." t nil) |
5333 Major mode for editing change logs; like Indented Text Mode. | 5337 Major mode for editing change logs; like Indented Text Mode. |
5334 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. | 5338 Prevents numeric backups and sets `left-margin' to 8 and `fill-column' to 74. |
5335 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. | 5339 New log entries are usually made with \\[add-change-log-entry] or \\[add-change-log-entry-other-window]. |
5336 Each entry behaves as a paragraph, and the entries for one day as a page. | 5340 Each entry behaves as a paragraph, and the entries for one day as a page. |
5337 Runs `change-log-mode-hook'." t nil) | 5341 Runs `change-log-mode-hook'." t nil) |
5342 | |
5343 (defvar add-log-lisp-like-modes '(emacs-lisp-mode lisp-mode scheme-mode lisp-interaction-mode) "\ | |
5344 *Modes that look like Lisp to `add-log-current-defun'.") | |
5345 | |
5346 (defvar add-log-c-like-modes '(c-mode c++-mode c++-c-mode objc-mode) "\ | |
5347 *Modes that look like C to `add-log-current-defun'.") | |
5348 | |
5349 (defvar add-log-tex-like-modes '(TeX-mode plain-TeX-mode LaTeX-mode plain-tex-mode latex-mode) "\ | |
5350 *Modes that look like TeX to `add-log-current-defun'.") | |
5338 | 5351 |
5339 (autoload 'add-log-current-defun "add-log" "\ | 5352 (autoload 'add-log-current-defun "add-log" "\ |
5340 Return name of function definition point is in, or nil. | 5353 Return name of function definition point is in, or nil. |
5341 | 5354 |
5342 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), | 5355 Understands C, Lisp, LaTeX (\"functions\" are chapters, sections, ...), |