]> git.eshelyaron.com Git - emacs.git/commitdiff
* Fix `capitalize` entry in `comp-known-type-specifiers` (bug#69631)
authorAndrea Corallo <acorallo@gnu.org>
Fri, 8 Mar 2024 13:26:14 +0000 (14:26 +0100)
committerEshel Yaron <me@eshelyaron.com>
Mon, 11 Mar 2024 09:21:10 +0000 (10:21 +0100)
* lisp/emacs-lisp/comp-common.el (comp-known-type-specifiers): Fix
'capitalize' entry.

(cherry picked from commit 966d0a62a1a13a3df5155476d36eafe17999497e)

lisp/emacs-lisp/comp-common.el

index 221f819e4743fe1f101660d6d406261d4dfd5e3c..4edfe8115863bc879e843552d2702d0fc9948d5b 100644 (file)
@@ -119,7 +119,7 @@ Used to modify the compiler environment."
      (function ((or integer marker) (or integer marker)) string))
     (bufferp (function (t) boolean))
     (byte-code-function-p (function (t) boolean))
-    (capitalize (function (or integer string) (or integer string)))
+    (capitalize (function ((or integer string)) (or integer string)))
     (car (function (list) t))
     (car-less-than-car (function (list list) boolean))
     (car-safe (function (t) t))