summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2018-03-08 14:09:38 +0100
committerMichael Albinus <michael.albinus@gmx.de>2018-03-08 14:09:38 +0100
commit4d6e548e60ddb8506d5c943b481f8ae5c819f174 (patch)
tree47568396d8ff477e8d7c78a523aba04853edfbbd /lisp
parent9f6e7905eccf147a07ac9d041921add37ebbf08b (diff)
downloademacs-4d6e548e60ddb8506d5c943b481f8ae5c819f174.tar.gz
emacs-4d6e548e60ddb8506d5c943b481f8ae5c819f174.tar.bz2
emacs-4d6e548e60ddb8506d5c943b481f8ae5c819f174.zip
Add OpenDocument formats to Tramp file archives
* doc/misc/tramp.texi (Archive file names): * lisp/net/tramp-archive.el (tramp-archive-suffixes): Add OpenDocument formats.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/net/tramp-archive.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/net/tramp-archive.el b/lisp/net/tramp-archive.el
index 87b69767f04..0b5a351deaa 100644
--- a/lisp/net/tramp-archive.el
+++ b/lisp/net/tramp-archive.el
@@ -62,6 +62,7 @@
;; * ".lzh", ".LZH" - Microsoft Windows compressed LHA archives
;; * ".msu", ".MSU" - Microsoft Windows Update packages
;; * ".mtree" - BSD mtree format
+;; * ".odb" ".odf" ".odg" ".odp" ".ods" ".odt" - OpenDocument formats
;; * ".pax" - Posix archives
;; * ".rar" - RAR archives
;; * ".rpm" - Red Hat packages
@@ -126,9 +127,9 @@
;; <https://github.com/libarchive/libarchive/wiki/LibarchiveFormats>
;;;###autoload
(defconst tramp-archive-suffixes
- ;; "cab", "lzh" and "zip" are included with lower and upper letters,
- ;; because Microsoft Windows provides them often with capital
- ;; letters.
+ ;; "cab", "lzh", "msu" and "zip" are included with lower and upper
+ ;; letters, because Microsoft Windows provides them often with
+ ;; capital letters.
'("7z" ;; 7-Zip archives.
"apk" ;; Android package kits. Not in libarchive testsuite.
"ar" ;; UNIX archiver formats.
@@ -142,6 +143,7 @@
"lzh" "LZH" ;; Microsoft Windows compressed LHA archives.
"msu" "MSU" ;; Microsoft Windows Update packages. Not in testsuite.
"mtree" ;; BSD mtree format.
+ "odb" "odf" "odg" "odp" "ods" "odt" ;; OpenDocument formats. Not in testsuite.
"pax" ;; Posix archives.
"rar" ;; RAR archives.
"rpm" ;; Red Hat packages.