Mercurial > hg > xemacs-beta
comparison lisp/prim/auto-autoloads.el @ 112:48d667d6f17f r20-1b8
Import from CVS: tag r20-1b8
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:20:48 +0200 |
parents | fe104dbd9147 |
children | 8619ce7e4c50 |
comparison
equal
deleted
inserted
replaced
111:164ab62060bf | 112:48d667d6f17f |
---|---|
2387 ;;;*** | 2387 ;;;*** |
2388 | 2388 |
2389 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el") | 2389 ;;;### (autoloads (nnml-generate-nov-databases) "nnml" "gnus/nnml.el") |
2390 | 2390 |
2391 (autoload 'nnml-generate-nov-databases "nnml" "\ | 2391 (autoload 'nnml-generate-nov-databases "nnml" "\ |
2392 Generate nov databases in all nnml directories." t nil) | 2392 Generate NOV databases in all nnml directories." t nil) |
2393 | 2393 |
2394 ;;;*** | 2394 ;;;*** |
2395 | 2395 |
2396 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el") | 2396 ;;;### (autoloads (nnsoup-revert-variables nnsoup-set-variables nnsoup-pack-replies) "nnsoup" "gnus/nnsoup.el") |
2397 | 2397 |
3838 ;;;*** | 3838 ;;;*** |
3839 | 3839 |
3840 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") | 3840 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") |
3841 | 3841 |
3842 (autoload 'ksh-mode "ksh-mode" "\ | 3842 (autoload 'ksh-mode "ksh-mode" "\ |
3843 ksh-mode $Revision: 1.15 $ - Major mode for editing (Bourne, Korn or Bourne again) | 3843 ksh-mode $Revision: 1.16 $ - Major mode for editing (Bourne, Korn or Bourne again) |
3844 shell scripts. | 3844 shell scripts. |
3845 Special key bindings and commands: | 3845 Special key bindings and commands: |
3846 \\{ksh-mode-map} | 3846 \\{ksh-mode-map} |
3847 Variables controlling indentation style: | 3847 Variables controlling indentation style: |
3848 ksh-indent | 3848 ksh-indent |
5191 | 5191 |
5192 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") | 5192 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") |
5193 | 5193 |
5194 (autoload 'vhdl-mode "vhdl-mode" "\ | 5194 (autoload 'vhdl-mode "vhdl-mode" "\ |
5195 Major mode for editing VHDL code. | 5195 Major mode for editing VHDL code. |
5196 vhdl-mode $Revision: 1.15 $ | 5196 vhdl-mode $Revision: 1.16 $ |
5197 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a | 5197 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a |
5198 vhdl-mode buffer. This automatically sets up a mail buffer with version | 5198 vhdl-mode buffer. This automatically sets up a mail buffer with version |
5199 information already added. You just need to add a description of the | 5199 information already added. You just need to add a description of the |
5200 problem, including a reproducible test case and send the message. | 5200 problem, including a reproducible test case and send the message. |
5201 | 5201 |
8359 A group of spaces is partially replaced by tabs | 8359 A group of spaces is partially replaced by tabs |
8360 when this can be done without changing the column they end at. | 8360 when this can be done without changing the column they end at. |
8361 Called non-interactively, the region is specified by arguments | 8361 Called non-interactively, the region is specified by arguments |
8362 START and END, rather than by the position of point and mark. | 8362 START and END, rather than by the position of point and mark. |
8363 The variable `tab-width' controls the spacing of tab stops." t nil) | 8363 The variable `tab-width' controls the spacing of tab stops." t nil) |
8364 | |
8365 ;;;*** | |
8366 | |
8367 ;;;### (autoloads (with-timeout run-with-idle-timer run-with-timer run-at-time) "timer" "prim/timer.el") | |
8368 | |
8369 (autoload 'run-at-time "timer" "\ | |
8370 Perform an action after a delay of SECS seconds. | |
8371 Repeat the action every REPEAT seconds, if REPEAT is non-nil. | |
8372 TIME should be a string like \"11:23pm\", nil meaning now, a number of seconds | |
8373 from now, or a value from `encode-time'. | |
8374 REPEAT may be an integer or floating point number. | |
8375 The action is to call FUNCTION with arguments ARGS. | |
8376 | |
8377 This function returns a timer object which you can use in `cancel-timer'." t nil) | |
8378 | |
8379 (autoload 'run-with-timer "timer" "\ | |
8380 Perform an action after a delay of SECS seconds. | |
8381 Repeat the action every REPEAT seconds, if REPEAT is non-nil. | |
8382 SECS and REPEAT may be integers or floating point numbers. | |
8383 The action is to call FUNCTION with arguments ARGS. | |
8384 | |
8385 This function returns a timer object which you can use in `cancel-timer'." t nil) | |
8386 | |
8387 (autoload 'run-with-idle-timer "timer" "\ | |
8388 Perform an action the next time Emacs is idle for SECS seconds. | |
8389 If REPEAT is non-nil, do this each time Emacs is idle for SECS seconds. | |
8390 SECS may be an integer or a floating point number. | |
8391 The action is to call FUNCTION with arguments ARGS. | |
8392 | |
8393 This function returns a timer object which you can use in `cancel-timer'." t nil) | |
8394 | |
8395 (put 'with-timeout 'lisp-indent-function 1) | |
8396 | |
8397 (autoload 'with-timeout "timer" "\ | |
8398 Run BODY, but if it doesn't finish in SECONDS seconds, give up. | |
8399 If we give up, we run the TIMEOUT-FORMS and return the value of the last one. | |
8400 The call should look like: | |
8401 (with-timeout (SECONDS TIMEOUT-FORMS...) BODY...) | |
8402 The timeout is checked whenever Emacs waits for some kind of external | |
8403 event (such as keyboard input, input from subprocesses, or a certain time); | |
8404 if the program loops without waiting in any way, the timeout will not | |
8405 be detected." nil 'macro) | |
8406 | 8364 |
8407 ;;;*** | 8365 ;;;*** |
8408 | 8366 |
8409 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el") | 8367 ;;;### (autoloads (ask-user-about-supersession-threat ask-user-about-lock) "userlock" "prim/userlock.el") |
8410 | 8368 |