Replace obsolete usage of `cl` in `plantuml-mode` with `cl-lib`

This commit is contained in:
Daniel - 2023-10-27 17:05:43 +02:00
parent f94e909987
commit 55c19e5b78
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@
(require 'thingatpt)
(require 'dash)
(require 'xml)
(require 'cl)
(require 'cl-lib)
(defgroup plantuml-mode nil
"Major mode for editing plantuml file."
@ -678,7 +678,7 @@ be generated first."
(user-error "Export file name %s does not exist yet and export has been denied, aborting"
export-file-name)))
(case system-type
(cl-case system-type
((windows-nt) (w32-shell-execute "open" export-file-name))
((cygwin) (start-process "" nil "cygstart" export-file-name))
(otherwise (start-process "" nil "xdg-open" export-file-name)))))