comparison lisp/auto-autoloads.el @ 388:aabb7f5b1c81 r21-2-9

Import from CVS: tag r21-2-9
author cvs
date Mon, 13 Aug 2007 11:09:42 +0200
parents d883f39b8495
children 1f50e6fe4f3f
comparison
equal deleted inserted replaced
387:f892a9d0bb8d 388:aabb7f5b1c81
173 Must be used only with `-batch', and kills Emacs on completion. 173 Must be used only with `-batch', and kills Emacs on completion.
174 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil) 174 For example, invoke `xemacs -batch -f batch-byte-recompile-directory .'." nil nil)
175 175
176 ;;;*** 176 ;;;***
177 177
178 ;;;### (autoloads (compiler-macroexpand define-compiler-macro ignore-errors assert check-type typep deftype cl-struct-setf-expander defstruct define-modify-macro callf2 callf letf* letf rotatef shiftf remf cl-do-pop psetf setf get-setf-method defsetf define-setf-method declare the locally multiple-value-setq multiple-value-bind lexical-let* lexical-let symbol-macrolet macrolet labels flet progv psetq do-all-symbols do-symbols dotimes dolist do* do loop return-from return block etypecase typecase ecase case load-time-value eval-when destructuring-bind function* defmacro* defun* gentemp gensym cl-compile-time-init) "cl-macs" "lisp/cl-macs.el") 178 ;;;### (autoloads (compiler-macroexpand define-compiler-macro ignore-file-errors ignore-errors assert check-type typep deftype cl-struct-setf-expander defstruct define-modify-macro callf2 callf letf* letf rotatef shiftf remf cl-do-pop psetf setf get-setf-method defsetf define-setf-method declare the locally multiple-value-setq multiple-value-bind lexical-let* lexical-let symbol-macrolet macrolet labels flet progv psetq do-all-symbols do-symbols dotimes dolist do* do loop return-from return block etypecase typecase ecase case load-time-value eval-when destructuring-bind function* defmacro* defun* gentemp gensym cl-compile-time-init) "cl-macs" "lisp/cl-macs.el")
179 179
180 (autoload 'cl-compile-time-init "cl-macs" nil nil nil) 180 (autoload 'cl-compile-time-init "cl-macs" nil nil nil)
181 181
182 (autoload 'gensym "cl-macs" "\ 182 (autoload 'gensym "cl-macs" "\
183 Generate a new uninterned symbol. 183 Generate a new uninterned symbol.
320 go back to their previous definitions, or lack thereof)." nil 'macro) 320 go back to their previous definitions, or lack thereof)." nil 'macro)
321 321
322 (autoload 'labels "cl-macs" "\ 322 (autoload 'labels "cl-macs" "\
323 (labels ((FUNC ARGLIST BODY...) ...) FORM...): make temporary func bindings. 323 (labels ((FUNC ARGLIST BODY...) ...) FORM...): make temporary func bindings.
324 This is like `flet', except the bindings are lexical instead of dynamic. 324 This is like `flet', except the bindings are lexical instead of dynamic.
325 Unlike `flet', this macro is fully complaint with the Common Lisp standard." nil 'macro) 325 Unlike `flet', this macro is fully compliant with the Common Lisp standard." nil 'macro)
326 326
327 (autoload 'macrolet "cl-macs" "\ 327 (autoload 'macrolet "cl-macs" "\
328 (macrolet ((NAME ARGLIST BODY...) ...) FORM...): make temporary macro defns. 328 (macrolet ((NAME ARGLIST BODY...) ...) FORM...): make temporary macro defns.
329 This is like `flet', but for macros instead of functions." nil 'macro) 329 This is like `flet', but for macros instead of functions." nil 'macro)
330 330
484 484
485 (autoload 'ignore-errors "cl-macs" "\ 485 (autoload 'ignore-errors "cl-macs" "\
486 Execute FORMS; if an error occurs, return nil. 486 Execute FORMS; if an error occurs, return nil.
487 Otherwise, return result of last FORM." nil 'macro) 487 Otherwise, return result of last FORM." nil 'macro)
488 488
489 (autoload 'ignore-file-errors "cl-macs" "\
490 Execute FORMS; if an error of type `file-error' occurs, return nil.
491 Otherwise, return result of last FORM." nil 'macro)
492
489 (autoload 'define-compiler-macro "cl-macs" "\ 493 (autoload 'define-compiler-macro "cl-macs" "\
490 (define-compiler-macro FUNC ARGLIST BODY...): Define a compiler-only macro. 494 (define-compiler-macro FUNC ARGLIST BODY...): Define a compiler-only macro.
491 This is like `defmacro', but macro expansion occurs only if the call to 495 This is like `defmacro', but macro expansion occurs only if the call to
492 FUNC is compiled (i.e., not interpreted). Compiler macros should be used 496 FUNC is compiled (i.e., not interpreted). Compiler macros should be used
493 for optimizing the way calls to FUNC are compiled; the form returned by 497 for optimizing the way calls to FUNC are compiled; the form returned by
509 ;;;*** 513 ;;;***
510 514
511 ;;;### (autoloads (config-value config-value-hash-table) "config" "lisp/config.el") 515 ;;;### (autoloads (config-value config-value-hash-table) "config" "lisp/config.el")
512 516
513 (autoload 'config-value-hash-table "config" "\ 517 (autoload 'config-value-hash-table "config" "\
514 Return hashtable of configuration parameters and their values." nil nil) 518 Return hash table of configuration parameters and their values." nil nil)
515 519
516 (autoload 'config-value "config" "\ 520 (autoload 'config-value "config" "\
517 Return the value of the configuration parameter CONFIG_SYMBOL." nil nil) 521 Return the value of the configuration parameter CONFIG_SYMBOL." nil nil)
518 522
519 ;;;*** 523 ;;;***
923 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...) 927 (MATCHER PRE-MATCH-FORM POST-MATCH-FORM MATCH-HIGHLIGHT ...)
924 928
925 Where MATCHER is as for MATCH-HIGHLIGHT with one exception; see below. 929 Where MATCHER is as for MATCH-HIGHLIGHT with one exception; see below.
926 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after 930 PRE-MATCH-FORM and POST-MATCH-FORM are evaluated before the first, and after
927 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be 931 the last, instance MATCH-ANCHORED's MATCHER is used. Therefore they can be
928 used to initialise before, and cleanup after, MATCHER is used. Typically, 932 used to initialize before, and cleanup after, MATCHER is used. Typically,
929 PRE-MATCH-FORM is used to move to some position relative to the original 933 PRE-MATCH-FORM is used to move to some position relative to the original
930 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might 934 MATCHER, before starting with MATCH-ANCHORED's MATCHER. POST-MATCH-FORM might
931 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER. 935 be used to move, before resuming with MATCH-ANCHORED's parent's MATCHER.
932 936
933 For example, an element of the form highlights (if not already highlighted): 937 For example, an element of the form highlights (if not already highlighted):
958 Be very careful composing regexps for this list; 962 Be very careful composing regexps for this list;
959 the wrong pattern can dramatically slow things down!") 963 the wrong pattern can dramatically slow things down!")
960 964
961 (make-variable-buffer-local 'font-lock-keywords) 965 (make-variable-buffer-local 'font-lock-keywords)
962 966
963 (defcustom font-lock-mode nil "Non nil means `font-lock-mode' is on" :group 'font-lock :type 'boolean :initialize 'custom-initialize-default :require 'font-lock :set '(lambda (var val) (font-lock-mode (or val 0)))) 967 (defcustom font-lock-mode nil "Non nil means `font-lock-mode' is on" :group 'font-lock :type 'boolean :initialize 'custom-initialize-default :require 'font-lock :set (function (lambda (var val) (font-lock-mode (or val 0)))))
964 968
965 (defvar font-lock-mode-hook nil "\ 969 (defvar font-lock-mode-hook nil "\
966 Function or functions to run on entry to font-lock-mode.") 970 Function or functions to run on entry to font-lock-mode.")
967 971
968 (autoload 'font-lock-mode "font-lock" "\ 972 (autoload 'font-lock-mode "font-lock" "\
1060 1064
1061 (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) 1065 (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)
1062 1066
1063 ;;;*** 1067 ;;;***
1064 1068
1065 ;;;### (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") 1069 ;;;### (autoloads (hyper-apropos-popup-menu hyper-apropos-set-variable hyper-set-variable hyper-apropos-read-variable-symbol hyper-describe-function hyper-where-is hyper-describe-variable hyper-describe-face hyper-describe-key-briefly hyper-describe-key hyper-apropos) "hyper-apropos" "lisp/hyper-apropos.el")
1066 1070
1067 (autoload 'hyper-apropos "hyper-apropos" "\ 1071 (autoload 'hyper-apropos "hyper-apropos" "\
1068 Display lists of functions and variables matching REGEXP 1072 Display lists of functions and variables matching REGEXP
1069 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the 1073 in buffer \"*Hyper Apropos*\". If optional prefix arg is given, then the
1070 value of `hyper-apropos-programming-apropos' is toggled for this search. 1074 value of `hyper-apropos-programming-apropos' is toggled for this search.
1079 See also `hyper-apropos' and `hyper-describe-function'." t nil) 1083 See also `hyper-apropos' and `hyper-describe-function'." t nil)
1080 1084
1081 (autoload 'hyper-describe-variable "hyper-apropos" "\ 1085 (autoload 'hyper-describe-variable "hyper-apropos" "\
1082 Hypertext drop-in replacement for `describe-variable'. 1086 Hypertext drop-in replacement for `describe-variable'.
1083 See also `hyper-apropos' and `hyper-describe-function'." t nil) 1087 See also `hyper-apropos' and `hyper-describe-function'." t nil)
1088
1089 (autoload 'hyper-where-is "hyper-apropos" "\
1090 Print message listing key sequences that invoke specified command." t nil)
1084 1091
1085 (autoload 'hyper-describe-function "hyper-apropos" "\ 1092 (autoload 'hyper-describe-function "hyper-apropos" "\
1086 Hypertext replacement for `describe-function'. Unlike `describe-function' 1093 Hypertext replacement for `describe-function'. Unlike `describe-function'
1087 in that the symbol under the cursor is the default if it is a function. 1094 in that the symbol under the cursor is the default if it is a function.
1088 See also `hyper-apropos' and `hyper-describe-variable'." t nil) 1095 See also `hyper-apropos' and `hyper-describe-variable'." t nil)
1300 (autoload 'package-get-custom "package-get" "\ 1307 (autoload 'package-get-custom "package-get" "\
1301 Fetch and install the latest versions of all customized packages." t nil) 1308 Fetch and install the latest versions of all customized packages." t nil)
1302 1309
1303 ;;;*** 1310 ;;;***
1304 1311
1305 ;;;### (autoloads (pui-list-packages pui-add-install-directory) "package-ui" "lisp/package-ui.el") 1312 ;;;### (autoloads (pui-list-packages pui-add-install-directory package-ui-add-site) "package-ui" "lisp/package-ui.el")
1313
1314 (autoload 'package-ui-add-site "package-ui" "\
1315 Add site to package-get-remote and possibly offer to update package list." nil nil)
1306 1316
1307 (autoload 'pui-add-install-directory "package-ui" "\ 1317 (autoload 'pui-add-install-directory "package-ui" "\
1308 Add a new package binary directory to the head of `package-get-remote'. 1318 Add a new package binary directory to the head of `package-get-remote'.
1309 Note that no provision is made for saving any changes made by this function. 1319 Note that no provision is made for saving any changes made by this function.
1310 It exists mainly as a convenience for one-time package installations from 1320 It exists mainly as a convenience for one-time package installations from
1314 List all packages and package information. 1324 List all packages and package information.
1315 The package name, version, and description are displayed. From the displayed 1325 The package name, version, and description are displayed. From the displayed
1316 buffer, the user can see which packages are installed, which are not, and 1326 buffer, the user can see which packages are installed, which are not, and
1317 which are out-of-date (a newer version is available). The user can then 1327 which are out-of-date (a newer version is available). The user can then
1318 select packages for installation via the keyboard or mouse." t nil) 1328 select packages for installation via the keyboard or mouse." t nil)
1329
1330 (defalias 'list-packages 'pui-list-packages)
1319 1331
1320 ;;;*** 1332 ;;;***
1321 1333
1322 ;;;### (autoloads (picture-mode) "picture" "lisp/picture.el") 1334 ;;;### (autoloads (picture-mode) "picture" "lisp/picture.el")
1323 1335
1645 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil) 1657 (autoload 'font-menu-size-constructor "x-font-menu" nil nil nil)
1646 1658
1647 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil) 1659 (autoload 'font-menu-weight-constructor "x-font-menu" nil nil nil)
1648 1660
1649 ;;;*** 1661 ;;;***
1662
1663 ;;;### (autoloads (x-win-init-sun) "x-win-sun" "lisp/x-win-sun.el")
1664
1665 (autoload 'x-win-init-sun "x-win-sun" nil nil nil)
1666
1667 ;;;***
1668
1669 ;;;### (autoloads (x-win-init-xfree86) "x-win-xfree86" "lisp/x-win-xfree86.el")
1670
1671 (autoload 'x-win-init-xfree86 "x-win-xfree86" nil nil nil)
1672
1673 ;;;***
1650 1674
1651 (provide 'Standard-autoloads) 1675 (provide 'Standard-autoloads)