\f
;;; Generated autoloads from emacs-lisp/scope.el
+(autoload 'scope-define-symbol-type "scope" "\
+
+
+(fn NAME PARENTS &rest PROPS)" nil t)
+(function-put 'scope-define-symbol-type 'lisp-indent-function 'defun)
+(autoload 'scope-get-symbol-type-property "scope" "\
+
+
+(fn TYPE PROP)")
+(autoload 'scope-symbol-type-p "scope" "\
+
+
+(fn SYM)")
+(autoload 'scope-describe-symbol-type "scope" "\
+
+
+(fn TYPE)" t)
(autoload 'scope "scope" "\
Read and analyze code from STREAM, reporting findings via CALLBACK.
- If within the code under analysis HEAD is a `cl-flet'-bound local
function name, analyze the form as a function call.
-- Otherwise, HEAD is unknown. If the HEAD of the top-level form that
- this function reads from STREAM is unknown, then this function ignores
- it and returns nil. If an unknown HEAD occurs in a nested form, then
- by default it is similarly ignored, but if `scope-assume-func-p' is
- non-nil, then this function assumes that such HEADs are functions.
+- If HEAD is unknown, then it is ignored, unless `scope-assume-func-p'
+ is non-nil, in which case this function assumes that unknown HEADs are
+ functions.
(fn CALLBACK &optional STREAM)")
(register-definition-prefixes "scope" '("scope-"))