diff options
| -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 @@ | |||
| 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. |