[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] scratch/hyperbole 7d7ad7461f 08/15: * hact.el: Fix broken lexical
|
From: |
Stefan Monnier |
|
Subject: |
[elpa] scratch/hyperbole 7d7ad7461f 08/15: * hact.el: Fix broken lexical-binding cookie |
|
Date: |
Wed, 24 May 2023 10:06:17 -0400 (EDT) |
branch: scratch/hyperbole
commit 7d7ad7461fc06003dc687bc6118a0f02d0e60622
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
* hact.el: Fix broken lexical-binding cookie
---
hact.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/hact.el b/hact.el
index b1910c1b66..046afc16c5 100644
--- a/hact.el
+++ b/hact.el
@@ -1,4 +1,4 @@
-;;; hact.el --- GNU Hyperbole button action handling -*- lexical-binding: t;
-let*-
+;;; hact.el --- GNU Hyperbole button action handling -*- lexical-binding: t;
-*-
;;
;; Author: Bob Weiner
;;
@@ -465,6 +465,7 @@ The type uses PARAMS to perform DEFAULT-ACTION (list of the
rest of the
arguments). A call to this function is syntactically the same as for
`defun', but a doc string is required.
Return symbol created when successful, else nil."
+ (declare (doc-string 3))
`(progn
(symtable:add ',type symtable:actypes)
(htype:create ,type actypes ,doc ,params ,default-action nil)))
- [elpa] scratch/hyperbole aa1562a614 14/15: Fix a few minor miscompilations and warnings, (continued)
- [elpa] scratch/hyperbole aa1562a614 14/15: Fix a few minor miscompilations and warnings, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole e126a76e8f 02/15: * hversion.el (hyperb:path-being-loaded): Delete function, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole b7e91d9f63 03/15: Try and avoid using `hyperb:stack-frame`, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole 46d71b2228 09/15: * hyperbole.el: Preload `kotl-autoloads`, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole 5949c75121 13/15: (man-show): Fix miscompilation, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole d1a27a6853 05/15: Get rid of `hyperb:stack-frame`, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole f47880579f 15/15: * hyrolo.el: A few cosmetic tweaks, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole 793e1a4254 04/15: (kotl-mode:pre-self-insert-command): Use buffer-locally at top-level, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole 944dc22293 10/15: hyperbole-autoloads.el: Remove needless definitions, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole 4d2cf095c0 07/15: (kview:char-visible-p): Delete function, Stefan Monnier, 2023/05/24
- [elpa] scratch/hyperbole 7d7ad7461f 08/15: * hact.el: Fix broken lexical-binding cookie,
Stefan Monnier <=