Compare commits

..

No commits in common. "375ead7c7ecb2a8a08617121c467bc47d4baa68c" and "f94e90998728922e675988507a35773d47aa295c" have entirely different histories.

View File

@ -75,7 +75,7 @@
(require 'thingatpt)
(require 'dash)
(require 'xml)
(require 'cl-lib)
(require 'cl)
(defgroup plantuml-mode nil
"Major mode for editing plantuml file."
@ -147,9 +147,7 @@
:group 'plantuml)
(defcustom plantuml-indent-level tab-width
"Indentation level of PlantUML lines"
:type 'number
:group 'plantuml)
"Indentation level of PlantUML lines")
(defcustom plantuml-confirm-overwrite-on-export t
"Control whether file exporting is allowed to silently overwrite files."
@ -680,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)))
(cl-case system-type
(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)))))