[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#74870: cl-labels and cl-flet don't create named blocks
From: |
Stefan Monnier |
Subject: |
bug#74870: cl-labels and cl-flet don't create named blocks |
Date: |
Sat, 21 Dec 2024 10:44:04 -0500 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
> Is there any reason why one would not want to *always* emulate the CL
> behavior in cl-lib? I could only think of a backward compatibility
> problem before CL was standardized, but I am not familiar with the time
> frame of cl-lib to know if that's really the case.
Could you try the patch below?
Stefan
diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el
index 65bc2cb9173..73741417383 100644
--- a/lisp/emacs-lisp/cl-macs.el
+++ b/lisp/emacs-lisp/cl-macs.el
@@ -2096,15 +2096,22 @@ cl-flet
cl-declarations body)))
(let ((binds ()) (newenv macroexpand-all-environment))
(dolist (binding bindings)
- (let ((var (make-symbol (format "--cl-%s--" (car binding))))
- (args-and-body (cdr binding)))
- (if (and (= (length args-and-body) 1)
- (macroexp-copyable-p (car args-and-body)))
+ (let* ((var (make-symbol (format "--cl-%s--" (car binding))))
+ (args-and-body (cdr binding))
+ (args (car args-and-body))
+ (body (cdr args-and-body)))
+ (if (and (null body)
+ (macroexp-copyable-p args))
;; Optimize (cl-flet ((fun var)) body).
- (setq var (car args-and-body))
- (push (list var (if (= (length args-and-body) 1)
- (car args-and-body)
- `(cl-function (lambda . ,args-and-body))))
+ (setq var args)
+ (push (list var (if (null body)
+ args
+ (let ((parsed-body (macroexp-parse-body body)))
+ `(cl-function
+ (lambda ,args
+ ,@(car parsed-body)
+ (cl-block ,(car binding)
+ ,@(cdr parsed-body)))))))
binds))
(push (cons (car binding)
(lambda (&rest args)
@@ -2300,7 +2307,13 @@ cl-labels
var (macroexpand-all
(if (null sbody)
sargs ;A (FUNC EXP) definition.
- `(cl-function (lambda ,sargs . ,sbody)))
+ (let ((parsed-body
+ (macroexp-parse-body sbody)))
+ `(cl-function
+ (lambda ,sargs
+ ,@(car parsed-body)
+ (cl-block ,var
+ ,@(cdr parsed-body))))))
newenv)))))
(nreverse binds))
. ,(macroexp-unprogn
bug#74870: cl-labels and cl-flet don't create named blocks, Michael Heerdegen, 2024/12/19