From be047d0142a29aca0241a4c0392484d9e1275f52 Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Fri, 16 Aug 2024 19:18:53 +0200 Subject: [PATCH] scope.el: Improve commentary. --- lisp/emacs-lisp/scope.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/emacs-lisp/scope.el b/lisp/emacs-lisp/scope.el index 8b1aefe80b5..59b4a97e2e4 100644 --- a/lisp/emacs-lisp/scope.el +++ b/lisp/emacs-lisp/scope.el @@ -1,4 +1,4 @@ -;;; scope.el --- Analyze scope of Lisp symbols -*- lexical-binding: t; -*- +;;; scope.el --- Semantic analysis for ELisp symbols -*- lexical-binding: t; -*- ;; Copyright (C) 2024 Eshel Yaron @@ -20,7 +20,9 @@ ;;; Commentary: -;; Symbol-scope analysis for Emacs Lisp. +;; This library implements an analysis that determines the role of each +;; symbol in ELisp code. The entry point for the analysis is the +;; function `scope', see its docstring for usage information. ;;; Code: -- 2.39.2