diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2024-09-30 20:34:24 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2024-09-30 20:34:24 +0200 |
commit | f95d4208b6bcfbbf95c956d8a66faa92aa5e4965 (patch) | |
tree | 3c37da6a5cc3462ead9aa932f106b1e0a32b3b6b /lisp/emacs-lisp | |
parent | 4197a8450669e08c2d26f4a7d77dcb2771bd9492 (diff) | |
download | emacs-f95d4208b6bcfbbf95c956d8a66faa92aa5e4965.tar.gz emacs-f95d4208b6bcfbbf95c956d8a66faa92aa5e4965.tar.bz2 emacs-f95d4208b6bcfbbf95c956d8a66faa92aa5e4965.zip |
cond-star: Fix copyright
* lisp/emacs-lisp/cond-star.el: Fix copyright year and license
statement.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cond-star.el | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/cond-star.el b/lisp/emacs-lisp/cond-star.el index f6a37c08fde..543386bfcf5 100644 --- a/lisp/emacs-lisp/cond-star.el +++ b/lisp/emacs-lisp/cond-star.el @@ -1,18 +1,18 @@ ;;; cond-star.el --- Extended form of `cond' construct -*-lexical-binding: t; -*- -;; Copyright (C) 1985-2024 Free Software Foundation, Inc. +;; Copyright (C) 2024 Free Software Foundation, Inc. -;; Maintainer: rms@gnu.org +;; Maintainer: Richard Stallman <rms@gnu.org> ;; Package: emacs -;; This file is part of GNU Emacs. It implements `cond*'. +;; This file is part of GNU Emacs. -;; cond* is free software: you can redistribute it and/or modify +;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. -;; cond* is distributed in the hope that it will be useful, +;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. @@ -22,6 +22,8 @@ ;;; Commentary: +;; This library implements `cond*', an alternative to 'pcase'. + ;; Here is the list of functions the generated code is known to call: ;; car, cdr, car-safe, cdr-safe, nth, nthcdr, null, eq, equal, eql, =, ;; vectorp, length. |