]> git.eshelyaron.com Git - emacs.git/commitdiff
Update lisp/ldefs-boot.el
authorEshel Yaron <me@eshelyaron.com>
Fri, 11 Apr 2025 10:38:56 +0000 (12:38 +0200)
committerEshel Yaron <me@eshelyaron.com>
Fri, 11 Apr 2025 10:38:56 +0000 (12:38 +0200)
lisp/ldefs-boot.el

index a4ac8e2049defd98e890d18c5b9f7c3a0751dc58..215e1633bdb6e4521d8f03b08c61f356c2512a79 100644 (file)
@@ -26430,6 +26430,23 @@ that variable's value is a string.
 \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.
 
@@ -26467,11 +26484,9 @@ starting with a top-level form, by inspecting HEAD at each level:
 - 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-"))