comparison lisp/modes/auto-autoloads.el @ 189:489f57a838ef r20-3b21

Import from CVS: tag r20-3b21
author cvs
date Mon, 13 Aug 2007 09:57:07 +0200
parents 3d6bfa290dbd
children a2f645c6b9f8
comparison
equal deleted inserted replaced
188:e29a8e7498d9 189:489f57a838ef
6 ;;;*** 6 ;;;***
7 7
8 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el") 8 ;;;### (autoloads (ada-make-filename-from-adaname ada-mode) "ada-mode" "modes/ada-mode.el")
9 9
10 (autoload 'ada-mode "ada-mode" "\ 10 (autoload 'ada-mode "ada-mode" "\
11 Ada Mode is the major mode for editing Ada code. 11 Ada mode is the major mode for editing Ada code.
12 12
13 Bindings are as follows: (Note: 'LFD' is control-j.) 13 Bindings are as follows: (Note: 'LFD' is control-j.)
14 14
15 Indent line '\\[ada-tab]' 15 Indent line '\\[ada-tab]'
16 Indent line, insert newline and indent the new line. '\\[newline-and-indent]' 16 Indent line, insert newline and indent the new line. '\\[newline-and-indent]'
26 26
27 Fill comment paragraph '\\[ada-fill-comment-paragraph]' 27 Fill comment paragraph '\\[ada-fill-comment-paragraph]'
28 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]' 28 Fill comment paragraph and justify each line '\\[ada-fill-comment-paragraph-justify]'
29 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]' 29 Fill comment paragraph, justify and append postfix '\\[ada-fill-comment-paragraph-postfix]'
30 30
31 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]' 31 Next func/proc/task '\\[ada-next-procedure]' Previous func/proc/task '\\[ada-previous-procedure]'
32 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]' 32 Next package '\\[ada-next-package]' Previous package '\\[ada-previous-package]'
33 33
34 Goto matching start of current 'end ...;' '\\[ada-move-to-start]' 34 Goto matching start of current 'end ...;' '\\[ada-move-to-start]'
35 Goto end of current block '\\[ada-move-to-end]' 35 Goto end of current block '\\[ada-move-to-end]'
36 36
480 480
481 ;;;*** 481 ;;;***
482 482
483 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el") 483 ;;;### (autoloads (hs-minor-mode hs-hide-block hs-hide-all) "hideshow" "modes/hideshow.el")
484 484
485 (defvar hs-minor-mode nil "\ 485 (defcustom hs-minor-mode nil "Non-nil if using hideshow mode as a minor mode of some other mode.\nUse the command `hs-minor-mode' to toggle this variable." :type 'boolean :set (lambda (symbol value) (hs-minor-mode (or value 0))) :initialize 'custom-initialize-default :require 'hideshow :group 'hideshow)
486 Non-nil if using hideshow mode as a minor mode of some other mode.
487 Use the command `hs-minor-mode' to toggle this variable.")
488 486
489 (autoload 'hs-hide-all "hideshow" "\ 487 (autoload 'hs-hide-all "hideshow" "\
490 Hides all top-level blocks, displaying only first and last lines. 488 Hides all top-level blocks, displaying only first and last lines.
491 It moves point to the beginning of the line, and it runs the normal hook 489 It moves point to the beginning of the line, and it runs the normal hook
492 `hs-hide-hook'. See documentation for `run-hooks'." t nil) 490 `hs-hide-hook'. See documentation for `run-hooks'." t nil)
567 ;;;*** 565 ;;;***
568 566
569 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el") 567 ;;;### (autoloads (ksh-mode) "ksh-mode" "modes/ksh-mode.el")
570 568
571 (autoload 'ksh-mode "ksh-mode" "\ 569 (autoload 'ksh-mode "ksh-mode" "\
572 ksh-mode $Revision: 1.9 $ - Major mode for editing (Bourne, Korn or Bourne again) 570 ksh-mode $Revision: 1.10 $ - Major mode for editing (Bourne, Korn or Bourne again)
573 shell scripts. 571 shell scripts.
574 Special key bindings and commands: 572 Special key bindings and commands:
575 \\{ksh-mode-map} 573 \\{ksh-mode-map}
576 Variables controlling indentation style: 574 Variables controlling indentation style:
577 ksh-indent 575 ksh-indent
1275 1273
1276 ;;;*** 1274 ;;;***
1277 1275
1278 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el") 1276 ;;;### (autoloads (resize-minibuffer-mode) "rsz-minibuf" "modes/rsz-minibuf.el")
1279 1277
1280 (defgroup resize-minibuffer nil "Dynamically resize minibuffer to display entire contents" :group 'frames)
1281
1282 (defcustom resize-minibuffer-window-max-height nil "*Maximum size the minibuffer window is allowed to become.\nIf less than 1 or not a number, the limit is the height of the frame in\nwhich the active minibuffer window resides." :type '(choice (const nil) integer) :group 'resize-minibuffer)
1283
1284 (defcustom resize-minibuffer-window-exactly t "*If non-`nil', make minibuffer exactly the size needed to display all its contents.\nOtherwise, the minibuffer window can temporarily increase in size but\nnever get smaller while it is active." :type 'boolean :group 'resize-minibuffer)
1285
1286 (defcustom resize-minibuffer-frame nil "*If non-`nil' and the active minibuffer is the sole window in its frame, allow changing the frame height." :type 'boolean :group 'resize-minibuffer)
1287
1288 (defcustom resize-minibuffer-frame-max-height nil "*Maximum size the minibuffer frame is allowed to become.\nIf less than 1 or not a number, there is no limit.")
1289
1290 (defcustom resize-minibuffer-frame-exactly nil "*If non-`nil', make minibuffer frame exactly the size needed to display all its contents.\nOtherwise, the minibuffer frame can temporarily increase in size but\nnever get smaller while it is active." :type 'boolean :group 'resize-minibuffer)
1291
1292 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\ 1278 (autoload 'resize-minibuffer-mode "rsz-minibuf" "\
1293 Enable or disable resize-minibuffer mode. 1279 Enable or disable resize-minibuffer mode.
1294 A negative prefix argument disables this mode. A positive argument or 1280 A negative prefix argument disables this mode. A positive argument or
1295 argument of 0 enables it. 1281 argument of 0 enables it.
1296 1282
1558 1544
1559 ;;;*** 1545 ;;;***
1560 1546
1561 ;;;### (autoloads (strokes-compose-complex-stroke strokes-decode-buffer strokes-mode strokes-list-strokes strokes-load-user-strokes strokes-help strokes-describe-stroke strokes-do-complex-stroke strokes-do-stroke strokes-read-stroke strokes-global-set-stroke) "strokes" "modes/strokes.el") 1547 ;;;### (autoloads (strokes-compose-complex-stroke strokes-decode-buffer strokes-mode strokes-list-strokes strokes-load-user-strokes strokes-help strokes-describe-stroke strokes-do-complex-stroke strokes-do-stroke strokes-read-stroke strokes-global-set-stroke) "strokes" "modes/strokes.el")
1562 1548
1563 (defvar strokes-mode nil "\ 1549 (defcustom strokes-mode nil "Non-nil when `strokes' is globally enabled." :type 'boolean :set (lambda (symbol value) (strokes-mode (or value 0))) :initialize 'custom-initialize-default :require 'strokes :group 'strokes)
1564 Non-nil when `strokes' is globally enabled")
1565 1550
1566 (autoload 'strokes-global-set-stroke "strokes" "\ 1551 (autoload 'strokes-global-set-stroke "strokes" "\
1567 Interactively give STROKE the global binding as COMMAND. 1552 Interactively give STROKE the global binding as COMMAND.
1568 Operated just like `global-set-key', except for strokes. 1553 Operated just like `global-set-key', except for strokes.
1569 COMMAND is a symbol naming an interactively-callable function. STROKE 1554 COMMAND is a symbol naming an interactively-callable function. STROKE
1933 1918
1934 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el") 1919 ;;;### (autoloads (vhdl-mode) "vhdl-mode" "modes/vhdl-mode.el")
1935 1920
1936 (autoload 'vhdl-mode "vhdl-mode" "\ 1921 (autoload 'vhdl-mode "vhdl-mode" "\
1937 Major mode for editing VHDL code. 1922 Major mode for editing VHDL code.
1938 vhdl-mode $Revision: 1.9 $ 1923 vhdl-mode $Revision: 1.10 $
1939 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a 1924 To submit a problem report, enter `\\[vhdl-submit-bug-report]' from a
1940 vhdl-mode buffer. This automatically sets up a mail buffer with version 1925 vhdl-mode buffer. This automatically sets up a mail buffer with version
1941 information already added. You just need to add a description of the 1926 information already added. You just need to add a description of the
1942 problem, including a reproducable test case and send the message. 1927 problem, including a reproducable test case and send the message.
1943 1928