aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2024-09-30 20:34:24 +0200
committerStefan Kangas2024-09-30 20:34:24 +0200
commitf95d4208b6bcfbbf95c956d8a66faa92aa5e4965 (patch)
tree3c37da6a5cc3462ead9aa932f106b1e0a32b3b6b
parent4197a8450669e08c2d26f4a7d77dcb2771bd9492 (diff)
downloademacs-f95d4208b6bcfbbf95c956d8a66faa92aa5e4965.tar.gz
emacs-f95d4208b6bcfbbf95c956d8a66faa92aa5e4965.zip
cond-star: Fix copyright
* lisp/emacs-lisp/cond-star.el: Fix copyright year and license statement.
-rw-r--r--lisp/emacs-lisp/cond-star.el12
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 @@
1;;; cond-star.el --- Extended form of `cond' construct -*-lexical-binding: t; -*- 1;;; cond-star.el --- Extended form of `cond' construct -*-lexical-binding: t; -*-
2 2
3;; Copyright (C) 1985-2024 Free Software Foundation, Inc. 3;; Copyright (C) 2024 Free Software Foundation, Inc.
4 4
5;; Maintainer: rms@gnu.org 5;; Maintainer: Richard Stallman <rms@gnu.org>
6;; Package: emacs 6;; Package: emacs
7 7
8;; This file is part of GNU Emacs. It implements `cond*'. 8;; This file is part of GNU Emacs.
9 9
10;; cond* is free software: you can redistribute it and/or modify 10;; GNU Emacs is free software: you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by 11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation, either version 3 of the License, or 12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version. 13;; (at your option) any later version.
14 14
15;; cond* is distributed in the hope that it will be useful, 15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of 16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details. 18;; GNU General Public License for more details.
@@ -22,6 +22,8 @@
22 22
23;;; Commentary: 23;;; Commentary:
24 24
25;; This library implements `cond*', an alternative to 'pcase'.
26
25;; Here is the list of functions the generated code is known to call: 27;; Here is the list of functions the generated code is known to call:
26;; car, cdr, car-safe, cdr-safe, nth, nthcdr, null, eq, equal, eql, =, 28;; car, cdr, car-safe, cdr-safe, nth, nthcdr, null, eq, equal, eql, =,
27;; vectorp, length. 29;; vectorp, length.