]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix last change
authorStefan Kangas <stefankangas@gmail.com>
Mon, 5 Feb 2024 07:30:31 +0000 (08:30 +0100)
committerEshel Yaron <me@eshelyaron.com>
Wed, 7 Feb 2024 10:51:40 +0000 (11:51 +0100)
* lisp/filesets.el (filesets-quote): Resurrect as obsolete alias for
'shell-quote-argument'.

(cherry picked from commit ea53a26d03da8d03652696939431b3a7e63053d7)

lisp/filesets.el

index bc113b80e07ebd7f5ecf1bccdbd6b241464ab6a6..68133ba22554270d39e05dabbc190a7b068848d9 100644 (file)
@@ -2461,11 +2461,15 @@ Set up hooks, load the cache file -- if existing -- and build the menu."
            (setq filesets-menu-use-cached-flag t)))
     (filesets-build-menu)))
 
+;;; obsolete
+
 (defun filesets-error (_class &rest args)
   "`error' wrapper."
   (declare (obsolete error "28.1"))
   (error "%s" (mapconcat #'identity args " ")))
 
+(define-obsolete-function-alias 'filesets-quote #'shell-quote-argument "30.1")
+
 (provide 'filesets)
 
 ;;; filesets.el ends here