]> git.eshelyaron.com Git - emacs.git/commitdiff
; Set maintainer for elint.el to emacs-devel
authorStefan Kangas <stefankangas@gmail.com>
Thu, 12 Oct 2023 11:23:38 +0000 (13:23 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Thu, 12 Oct 2023 11:25:31 +0000 (13:25 +0200)
* lisp/emacs-lisp/elint.el: Set maintainer to emacs-devel.

lisp/emacs-lisp/elint.el

index 9812c663ea8832d8c26a7ade0ab7c1cf06dc265e..c04b15dd2377cb52b994d5cd9ca3582cc0f08712 100644 (file)
@@ -1,8 +1,9 @@
 ;;; elint.el --- Lint Emacs Lisp -*- lexical-binding: t -*-
 
-;; Copyright (C) 1997, 2001-2023 Free Software Foundation, Inc.
+;; Copyright (C) 1997-2023 Free Software Foundation, Inc.
 
 ;; Author: Peter Liljenberg <petli@lysator.liu.se>
+;; Maintainer: emacs-devel@gnu.org
 ;; Created: May 1997
 ;; Keywords: lisp
 
@@ -27,7 +28,7 @@
 ;; misspellings and undefined variables, although it can also catch
 ;; function calls with the wrong number of arguments.
 
-;; To use, call `elint-current-buffer' or `elint-defun' to lint a buffer
+;; To use it, call `elint-current-buffer' or `elint-defun' to lint a buffer
 ;; or defun.  The first call runs `elint-initialize' to set up some
 ;; argument data, which may take a while.
 
@@ -37,9 +38,9 @@
 
 ;;; To do:
 
-;; * Adding type checking. (Stop that sniggering!)
+;; * Adding type checking.  (Stop that sniggering!)
 ;; * Make eval-when-compile be sensitive to the difference between
-;;   funcs and macros.
+;;   functions and macros.
 ;; * Requires within function bodies.
 ;; * Handle defstruct.
 ;; * Prevent recursive requires.