]> git.eshelyaron.com Git - emacs.git/commitdiff
Loosen strict parsing requirement for desktop files
authorMark Oteiza <mvoteiza@udel.edu>
Mon, 25 Sep 2017 12:45:08 +0000 (08:45 -0400)
committerMark Oteiza <mvoteiza@udel.edu>
Mon, 25 Sep 2017 12:45:08 +0000 (08:45 -0400)
There are other desktop-looking files, for instance those having to do
with MIME typess, that would benefit from being able to be read by this
function.  It helps to have some flexibility.
* lisp/xdg.el (xdg-desktop-read-file): Remove an error condition.
* test/lisp/xdg-tests.el: Remove a test.

lisp/xdg.el
test/lisp/xdg-tests.el

index e962cd21a6c96c2edf2329e192216bfa23abb178..76106f42586ea1106529e84b9ed8e8cf1961ac81 100644 (file)
@@ -197,8 +197,6 @@ Optional argument GROUP defaults to the string \"Desktop Entry\"."
     (unless (looking-at xdg-desktop-group-regexp)
       (error "Expected group name!  Instead saw: %s"
              (buffer-substring (point) (point-at-eol))))
-    (unless (equal (match-string 1) "Desktop Entry")
-      (error "Wrong first group: %s" (match-string 1)))
     (when group
       (while (and (re-search-forward xdg-desktop-group-regexp nil t)
                   (not (equal (match-string 1) group)))))
index e3c9a743e44610261d264cbefc33a96fe28e805f..b80f5e85524129fdc5570a8b867e4487c16bb26c 100644 (file)
@@ -40,9 +40,6 @@
     (should (equal (gethash "Name" tab1) "Test"))
     (should (eq 'default (gethash "Exec" tab1 'default)))
     (should (equal "frobnicate" (gethash "Exec" tab2))))
-  (should-error
-   (xdg-desktop-read-file
-    (expand-file-name "wrong.desktop" xdg-tests-data-dir)))
   (should-error
    (xdg-desktop-read-file
     (expand-file-name "malformed.desktop" xdg-tests-data-dir)))