* doc/misc/cl.texi (Declarations): Don't document cl-locally.
* lisp/emacs-lisp/cl-macs.el (cl-locally): Make into obsolete
function alias for progn.
(cherry picked from commit
4c4f907bad1ad616dda6e5f5eec0b78ebea9f1c4)
is @code{special}.
@end defmac
-@defmac cl-locally declarations@dots{} forms@dots{}
-In this package, @code{cl-locally} is no different from @code{progn}.
-@end defmac
-
@defmac cl-the type form
@code{cl-the} returns the value of @code{form}, first checking (if
optimization settings permit) that it is of type @code{type}. Future
;;; Declarations.
;;;###autoload
-(defmacro cl-locally (&rest body)
- "Equivalent to `progn'."
- (declare (debug t))
- (cons 'progn body))
+(define-obsolete-function-alias 'cl-locally #'progn "31.1")
+
;;;###autoload
(defmacro cl-the (type form)
"Return FORM. If type-checking is enabled, assert that it is of TYPE."