1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
;;; cedet-loaddefs.el --- Auto-generated CEDET autoloads
;;
;;; Code:
;;;### (autoloads (cedet-update-autoloads) "cedet-autogen" "cedet-autogen.el"
;;;;;; (17213 39666))
;;; Generated autoloads from cedet-autogen.el
(autoload (quote cedet-update-autoloads) "cedet-autogen" "\
Update autoloads in file LOADDEFS from sources.
Optional argument DIRECTORY, specifies the directory to scan for
autoloads. It defaults to the current directory.
DIRECTORIES is a list of extra directory to scan. Those directory
names are relative to DIRECTORY. If DIRECTORIES is nil try to scan
sub directories of DIRECTORY where a `cedet-autogen-tagfile' file
exists." t nil)
;;;***
;;;### (autoloads nil "cedet-edebug" "cedet-edebug.el" (17987 16568))
;;; Generated autoloads from cedet-edebug.el
(add-hook (quote edebug-setup-hook) (lambda nil (require (quote cedet-edebug)) (defalias (quote edebug-prin1-to-string) (quote cedet-edebug-prin1-to-string)) (define-key edebug-mode-map "A" (quote semantic-adebug-edebug-expr))))
(add-hook (quote debugger-mode-hook) (lambda nil (require (quote cedet-edebug)) (define-key debugger-mode-map "A" (quote semantic-adebug-edebug-expr))))
;;;***
;;;### (autoloads (define-fame-channel) "fame" "fame.el" (17213 39681))
;;; Generated autoloads from fame.el
(autoload (quote define-fame-channel) "fame" "\
Define the new message channel CHANNEL.
CHANNEL must be a non-nil symbol.
The optional argument DEFAULT specifies the default value of message
levels for this channel. By default it is the value of
`fame-default-level-values'.
DOCSTRING is an optional channel documentation.
This defines the option `CHANNEL-fame-levels' to customize the current
value of message levels. And the functions `CHANNEL-send-debug',
`CHANNEL-send-info', `CHANNEL-send-warning', and `CHANNEL-send-error',
that respectively send debug, informational, warning, and error
messages to CHANNEL." nil (quote macro))
;;;***
;;;### (autoloads (inversion-upgrade-package inversion-add-to-load-path
;;;;;; inversion-find-version inversion-require) "inversion" "inversion.el"
;;;;;; (17881 43289))
;;; Generated autoloads from inversion.el
(autoload (quote inversion-require) "inversion" "\
Declare that you need PACKAGE with at least VERSION.
PACKAGE might be found in FILE. (See `require'.)
Throws an error if VERSION is incompatible with what is installed.
Optional argument DIRECTORY is a location where new versions of
this tool can be located. If there is a versioning problem and
DIRECTORY is provided, inversion will offer to download the file.
Optional argument RESERVED is saved for later use." nil nil)
(autoload (quote inversion-find-version) "inversion" "\
Search for the version and incompatible version of PACKAGE.
Does not load PACKAGE nor requires that it has been previously loaded.
Search in the directories in `load-path' for a PACKAGE.el library.
Visit the file found and search for the declarations of variables or
constants `PACKAGE-version' and `PACKAGE-incompatible-version'. The
value of these variables must be a version string.
Return a pair (VERSION-STRING . INCOMPATIBLE-VERSION-STRING) where
INCOMPATIBLE-VERSION-STRING can be nil.
Return nil when VERSION-STRING was not found." nil nil)
(autoload (quote inversion-add-to-load-path) "inversion" "\
Add the PACKAGE path to `load-path' if necessary.
MINIMUM is the minimum version requirement of PACKAGE.
Optional argument INSTALLDIR is the base directory where PACKAGE is
installed. It defaults to `default-directory'/PACKAGE.
SUBDIRS are sub-directories to add to `load-path', following the main
INSTALLDIR path." nil nil)
(autoload (quote inversion-upgrade-package) "inversion" "\
Try to upgrade PACKAGE in DIRECTORY is available." t nil)
;;;***
;;;### (autoloads (pprint-function pprint pprint-to-string) "pprint"
;;;;;; "pprint.el" (17213 39693))
;;; Generated autoloads from pprint.el
(autoload (quote pprint-to-string) "pprint" "\
Return a string containing the pretty-printed representation of OBJECT.
OBJECT can be any Lisp object. Quoting characters are used as needed
to make output that `read' can handle, whenever this is possible. The
pretty printer try as much as possible to limit the length of lines to
given WIDTH. WIDTH value defaults to `fill-column'." nil nil)
(autoload (quote pprint) "pprint" "\
Output the pretty-printed representation of OBJECT, any Lisp object.
Quoting characters are printed as needed to make output that `read'
can handle, whenever this is possible. Output stream is STREAM, or
value of `standard-output' (which see). The pretty printer try as
much as possible to limit the length of lines to given WIDTH. WIDTH
value defaults to `fill-column'." nil nil)
(autoload (quote pprint-function) "pprint" "\
See a pretty-printed representation of FUNCTION-NAME." t nil)
;;;***
;; Local Variables:
;; version-control: never
;; no-byte-compile: t
;; no-update-autoloads: t
;; End:
;;; cedet-loaddefs.el ends here
|