aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMichael Albinus2018-03-08 14:09:38 +0100
committerMichael Albinus2018-03-08 14:09:38 +0100
commit4d6e548e60ddb8506d5c943b481f8ae5c819f174 (patch)
tree47568396d8ff477e8d7c78a523aba04853edfbbd /lisp
parent9f6e7905eccf147a07ac9d041921add37ebbf08b (diff)
downloademacs-4d6e548e60ddb8506d5c943b481f8ae5c819f174.tar.gz
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 @@
62;; * ".lzh", ".LZH" - Microsoft Windows compressed LHA archives 62;; * ".lzh", ".LZH" - Microsoft Windows compressed LHA archives
63;; * ".msu", ".MSU" - Microsoft Windows Update packages 63;; * ".msu", ".MSU" - Microsoft Windows Update packages
64;; * ".mtree" - BSD mtree format 64;; * ".mtree" - BSD mtree format
65;; * ".odb" ".odf" ".odg" ".odp" ".ods" ".odt" - OpenDocument formats
65;; * ".pax" - Posix archives 66;; * ".pax" - Posix archives
66;; * ".rar" - RAR archives 67;; * ".rar" - RAR archives
67;; * ".rpm" - Red Hat packages 68;; * ".rpm" - Red Hat packages
@@ -126,9 +127,9 @@
126;; <https://github.com/libarchive/libarchive/wiki/LibarchiveFormats> 127;; <https://github.com/libarchive/libarchive/wiki/LibarchiveFormats>
127;;;###autoload 128;;;###autoload
128(defconst tramp-archive-suffixes 129(defconst tramp-archive-suffixes
129 ;; "cab", "lzh" and "zip" are included with lower and upper letters, 130 ;; "cab", "lzh", "msu" and "zip" are included with lower and upper
130 ;; because Microsoft Windows provides them often with capital 131 ;; letters, because Microsoft Windows provides them often with
131 ;; letters. 132 ;; capital letters.
132 '("7z" ;; 7-Zip archives. 133 '("7z" ;; 7-Zip archives.
133 "apk" ;; Android package kits. Not in libarchive testsuite. 134 "apk" ;; Android package kits. Not in libarchive testsuite.
134 "ar" ;; UNIX archiver formats. 135 "ar" ;; UNIX archiver formats.
@@ -142,6 +143,7 @@
142 "lzh" "LZH" ;; Microsoft Windows compressed LHA archives. 143 "lzh" "LZH" ;; Microsoft Windows compressed LHA archives.
143 "msu" "MSU" ;; Microsoft Windows Update packages. Not in testsuite. 144 "msu" "MSU" ;; Microsoft Windows Update packages. Not in testsuite.
144 "mtree" ;; BSD mtree format. 145 "mtree" ;; BSD mtree format.
146 "odb" "odf" "odg" "odp" "ods" "odt" ;; OpenDocument formats. Not in testsuite.
145 "pax" ;; Posix archives. 147 "pax" ;; Posix archives.
146 "rar" ;; RAR archives. 148 "rar" ;; RAR archives.
147 "rpm" ;; Red Hat packages. 149 "rpm" ;; Red Hat packages.