2017-02-06 23:27:47 -05:00
|
|
|
|
;;; xdg.el --- XDG specification and standard support -*- lexical-binding: t -*-
|
|
|
|
|
|
2025-01-01 07:39:17 +00:00
|
|
|
|
;; Copyright (C) 2017-2025 Free Software Foundation, Inc.
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
;; Author: Mark Oteiza <mvoteiza@udel.edu>
|
|
|
|
|
;; Created: 27 January 2017
|
|
|
|
|
;; Keywords: files, data
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published
|
|
|
|
|
;; by the Free Software Foundation; either version 3 of the License,
|
|
|
|
|
;; or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful, but
|
|
|
|
|
;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
;; General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 15:52:52 -07:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Library providing some convenience functions for the following XDG
|
|
|
|
|
;; standards and specifications
|
|
|
|
|
;;
|
|
|
|
|
;; - XDG Base Directory Specification
|
|
|
|
|
;; - Thumbnail Managing Standard
|
|
|
|
|
;; - xdg-user-dirs configuration
|
2017-09-06 13:17:05 -04:00
|
|
|
|
;; - Desktop Entry Specification
|
2022-09-21 14:00:23 +02:00
|
|
|
|
;; - Unofficial extension $XDG_SESSION_TYPE from systemd
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2017-09-06 13:17:05 -04:00
|
|
|
|
(eval-when-compile
|
2017-09-24 22:28:51 -04:00
|
|
|
|
(require 'cl-lib)
|
2017-09-06 13:17:05 -04:00
|
|
|
|
(require 'subr-x))
|
|
|
|
|
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
;; XDG Base Directory Specification
|
|
|
|
|
;; https://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
|
|
|
|
|
|
2021-10-26 11:39:32 -04:00
|
|
|
|
(defun xdg--dir-home (environ default-path)
|
|
|
|
|
(let ((env (getenv environ)))
|
|
|
|
|
(if (or (null env) (not (file-name-absolute-p env)))
|
|
|
|
|
(expand-file-name default-path)
|
|
|
|
|
env)))
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
(defun xdg-config-home ()
|
2021-10-26 23:17:29 +02:00
|
|
|
|
"Return the base directory for user specific configuration files.
|
|
|
|
|
|
|
|
|
|
According to the XDG Base Directory Specification version
|
|
|
|
|
0.8 (8th May 2021):
|
|
|
|
|
|
|
|
|
|
\"$XDG_CONFIG_HOME defines the base directory relative to
|
|
|
|
|
which user-specific configuration files should be stored.
|
|
|
|
|
If $XDG_CONFIG_HOME is either not set or empty, a default
|
|
|
|
|
equal to $HOME/.config should be used.\""
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(xdg--dir-home "XDG_CONFIG_HOME" "~/.config"))
|
|
|
|
|
|
|
|
|
|
(defun xdg-cache-home ()
|
2021-10-26 23:17:29 +02:00
|
|
|
|
"Return the base directory for user specific cache files.
|
|
|
|
|
|
|
|
|
|
According to the XDG Base Directory Specification version
|
|
|
|
|
0.8 (8th May 2021):
|
|
|
|
|
|
|
|
|
|
\"$XDG_CACHE_HOME defines the base directory relative to
|
|
|
|
|
which user-specific non-essential data files should be
|
|
|
|
|
stored. If $XDG_CACHE_HOME is either not set or empty, a
|
|
|
|
|
default equal to $HOME/.cache should be used.\""
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(xdg--dir-home "XDG_CACHE_HOME" "~/.cache"))
|
|
|
|
|
|
|
|
|
|
(defun xdg-data-home ()
|
2021-10-26 23:17:29 +02:00
|
|
|
|
"Return the base directory for user specific data files.
|
|
|
|
|
|
|
|
|
|
According to the XDG Base Directory Specification version
|
|
|
|
|
0.8 (8th May 2021):
|
|
|
|
|
|
|
|
|
|
\"$XDG_DATA_HOME defines the base directory relative to which
|
|
|
|
|
user-specific data files should be stored. If $XDG_DATA_HOME is
|
|
|
|
|
either not set or empty, a default equal to $HOME/.local/share
|
|
|
|
|
should be used.\""
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(xdg--dir-home "XDG_DATA_HOME" "~/.local/share"))
|
|
|
|
|
|
2021-10-25 07:51:02 +02:00
|
|
|
|
(defun xdg-state-home ()
|
|
|
|
|
"Return the base directory for user-specific state data.
|
|
|
|
|
|
|
|
|
|
According to the XDG Base Directory Specification version
|
|
|
|
|
0.8 (8th May 2021):
|
|
|
|
|
|
|
|
|
|
\"The $XDG_STATE_HOME contains state data that should persist
|
|
|
|
|
between (application) restarts, but that is not important or
|
|
|
|
|
portable enough to the user that it should be stored in
|
|
|
|
|
$XDG_DATA_HOME. It may contain:
|
|
|
|
|
|
|
|
|
|
* actions history (logs, history, recently used files, …)
|
|
|
|
|
|
|
|
|
|
* current state of the application that can be reused on a
|
|
|
|
|
restart (view, layout, open files, undo history, …)\""
|
|
|
|
|
(xdg--dir-home "XDG_STATE_HOME" "~/.local/state"))
|
|
|
|
|
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(defun xdg-runtime-dir ()
|
2021-10-26 23:17:29 +02:00
|
|
|
|
"Return the value of $XDG_RUNTIME_DIR.
|
|
|
|
|
|
|
|
|
|
According to the XDG Base Directory Specification version
|
|
|
|
|
0.8 (8th May 2021):
|
|
|
|
|
|
|
|
|
|
\"$XDG_RUNTIME_DIR defines the base directory relative to
|
|
|
|
|
which user-specific non-essential runtime files and other
|
|
|
|
|
file objects (such as sockets, named pipes, ...) should be
|
|
|
|
|
stored.\""
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(getenv "XDG_RUNTIME_DIR"))
|
|
|
|
|
|
|
|
|
|
(defun xdg-config-dirs ()
|
2021-10-26 23:17:29 +02:00
|
|
|
|
"Return the config directory search path as a list.
|
|
|
|
|
|
|
|
|
|
According to the XDG Base Directory Specification version
|
|
|
|
|
0.8 (8th May 2021):
|
|
|
|
|
|
|
|
|
|
\"$XDG_CONFIG_DIRS defines the preference-ordered set of base
|
|
|
|
|
directories to search for configuration files in addition to
|
|
|
|
|
the $XDG_CONFIG_HOME base directory. The directories in
|
2021-11-12 13:50:55 +01:00
|
|
|
|
$XDG_CONFIG_DIRS should be separated with a colon ':'.
|
2021-10-26 23:17:29 +02:00
|
|
|
|
|
|
|
|
|
\"If $XDG_CONFIG_DIRS is either not set or empty, a value equal to
|
|
|
|
|
/etc/xdg should be used.\""
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(let ((env (getenv "XDG_CONFIG_DIRS")))
|
|
|
|
|
(if (or (null env) (string= env ""))
|
|
|
|
|
'("/etc/xdg")
|
|
|
|
|
(parse-colon-path env))))
|
|
|
|
|
|
|
|
|
|
(defun xdg-data-dirs ()
|
2021-10-26 23:17:29 +02:00
|
|
|
|
"Return the data directory search path as a list.
|
|
|
|
|
|
|
|
|
|
According to the XDG Base Directory Specification version
|
|
|
|
|
0.8 (8th May 2021):
|
|
|
|
|
|
|
|
|
|
\"$XDG_DATA_DIRS defines the preference-ordered set of base
|
|
|
|
|
directories to search for data files in addition to the
|
|
|
|
|
$XDG_DATA_HOME base directory. The directories in
|
2021-11-12 13:50:55 +01:00
|
|
|
|
$XDG_DATA_DIRS should be separated with a colon ':'.
|
2021-10-26 23:17:29 +02:00
|
|
|
|
|
|
|
|
|
\"If $XDG_DATA_DIRS is either not set or empty, a value equal
|
|
|
|
|
to /usr/local/share/:/usr/share/ should be used.\""
|
2017-02-08 22:08:09 -08:00
|
|
|
|
(let ((env (getenv "XDG_DATA_DIRS")))
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(if (or (null env) (string= env ""))
|
|
|
|
|
'("/usr/local/share/" "/usr/share/")
|
|
|
|
|
(parse-colon-path env))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; Thumbnail Managing Standard
|
|
|
|
|
;; https://specifications.freedesktop.org/thumbnail-spec/thumbnail-spec-latest.html
|
|
|
|
|
|
|
|
|
|
(defun xdg-thumb-uri (filename)
|
|
|
|
|
"Return the canonical URI for FILENAME.
|
2017-09-25 08:44:23 -04:00
|
|
|
|
If FILENAME has absolute file name /foo/bar.jpg, its canonical URI is
|
2017-02-06 23:27:47 -05:00
|
|
|
|
file:///foo/bar.jpg"
|
|
|
|
|
(concat "file://" (expand-file-name filename)))
|
|
|
|
|
|
|
|
|
|
(defun xdg-thumb-name (filename)
|
|
|
|
|
"Return the appropriate thumbnail filename for FILENAME."
|
|
|
|
|
(concat (md5 (xdg-thumb-uri filename)) ".png"))
|
|
|
|
|
|
|
|
|
|
(defun xdg-thumb-mtime (filename)
|
2017-10-22 00:29:04 -07:00
|
|
|
|
"Return modification time of FILENAME as an Emacs timestamp."
|
|
|
|
|
(file-attribute-modification-time (file-attributes filename)))
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;; XDG User Directories
|
|
|
|
|
;; https://www.freedesktop.org/wiki/Software/xdg-user-dirs/
|
|
|
|
|
|
|
|
|
|
(defconst xdg-line-regexp
|
2022-07-04 14:52:50 +02:00
|
|
|
|
(rx "XDG_"
|
|
|
|
|
(group-n 1 (or "DESKTOP" "DOWNLOAD" "TEMPLATES" "PUBLICSHARE"
|
|
|
|
|
"DOCUMENTS" "MUSIC" "PICTURES" "VIDEOS"))
|
|
|
|
|
"_DIR=\""
|
|
|
|
|
(group-n 2 (or "/" "$HOME/") (*? (or (not (any "\"")) "\\\"")))
|
|
|
|
|
"\"")
|
2021-09-14 08:43:18 +02:00
|
|
|
|
"Regexp matching non-comment lines in `xdg-user-dirs' config files.")
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
(defvar xdg-user-dirs nil
|
|
|
|
|
"Alist of directory keys and values.")
|
|
|
|
|
|
2017-02-12 20:25:57 -05:00
|
|
|
|
(defun xdg--substitute-home-env (str)
|
|
|
|
|
(if (file-name-absolute-p str) str
|
|
|
|
|
(save-match-data
|
Fix regular-expression glitches and typos
Problems reported by Mattias Engdegård in:
https://lists.gnu.org/r/emacs-devel/2019-03/msg00085.html
* admin/admin.el (set-version):
* lisp/allout.el (allout-latexify-one-item):
* lisp/arc-mode.el (archive-arc-rename-entry)
(archive-rar-summarize):
* lisp/calc/calc-graph.el (calc-graph-set-styles)
(calc-graph-hide):
* lisp/calc/calc-help.el (calc-describe-key):
* lisp/calc/calc-lang.el (math-compose-tex-func, eqn):
* lisp/calc/calc.el (calcDigit-key):
* lisp/cedet/ede/makefile-edit.el (makefile-macro-file-list):
* lisp/cedet/ede/speedbar.el (ede-tag-expand):
* lisp/cedet/semantic/sb.el (semantic-sb-show-extra)
(semantic-sb-expand-group):
* lisp/comint.el (comint-substitute-in-file-name):
* lisp/dired.el (dired-actual-switches):
* lisp/emacs-lisp/chart.el (chart-rmail-from):
* lisp/emacs-lisp/eieio-opt.el (eieio-sb-expand):
* lisp/emacs-lisp/eieio-speedbar.el (eieio-speedbar-object-expand):
* lisp/emacs-lisp/rx.el (rx-not, rx-atomic-p):
* lisp/emulation/viper-ex.el (viper-get-ex-token)
(viper-get-ex-pat, ex-set-read-variable):
* lisp/epg.el (epg--status-SIG_CREATED):
* lisp/erc/erc-speedbar.el (erc-speedbar-expand-user):
(erc-speedbar-expand-channel, erc-speedbar-expand-server)
* lisp/erc/erc.el (erc-is-message-ctcp-and-not-action-p)
(erc-banlist-update):
* lisp/eshell/em-dirs.el (eshell-parse-drive-letter, eshell/pwd):
* lisp/find-dired.el (find-dired):
* lisp/frame.el (frame-set-background-mode):
* lisp/generic-x.el (apache-log-generic-mode):
* lisp/gnus/gnus-art.el (gnus-button-valid-localpart-regexp):
* lisp/gnus/gnus.el (gnus-short-group-name):
* lisp/gnus/message.el (message-mailer-swallows-blank-line):
* lisp/ibuffer.el (ibuffer-fontification-alist):
* lisp/ido.el (ido-set-matches-1):
* lisp/info-xref.el (info-xref-lock-file-p):
* lisp/info.el (Info-dir-remove-duplicates)
(Info-unescape-quotes, Info-split-parameter-string)
(Info-speedbar-expand-node):
* lisp/international/mule.el (sgml-html-meta-auto-coding-function):
* lisp/isearch.el (isearch-pre-command-hook):
* lisp/language/ethio-util.el (ethio-fidel-to-tex-buffer):
* lisp/mail/rmail.el (rmail-collect-deleted):
* lisp/mh-e/mh-alias.el (mh-alias-suggest-alias):
* lisp/mh-e/mh-comp.el (mh-forward):
* lisp/mh-e/mh-search.el (mh-index-next-folder)
(mh-index-create-imenu-index):
* lisp/mh-e/mh-xface.el (mh-picon-get-image):
* lisp/minibuffer.el (completion--embedded-envvar-re):
* lisp/net/ange-ftp.el (ange-ftp-ls-parser):
* lisp/net/goto-addr.el (goto-address-mail-regexp)
(goto-address-find-address-at-point):
* lisp/net/pop3.el (pop3-read-response, pop3-user)
(pop3-pass, pop3-apop):
* lisp/net/tramp.el (tramp-ipv6-regexp)
(tramp-replace-environment-variables):
* lisp/nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* lisp/nxml/rng-uri.el (rng-uri-escape-multibyte):
* lisp/nxml/rng-xsd.el (rng-xsd-convert-any-uri):
* lisp/obsolete/pgg.el (pgg-fetch-key):
* lisp/obsolete/vip.el (vip-get-ex-token):
* lisp/org/ob-core.el (org-babel-string-read):
* lisp/org/org-agenda.el:
(org-agenda-add-entry-to-org-agenda-diary-file):
* lisp/org/org-element.el (org-element-keyword-parser):
* lisp/org/org-list.el (org-list-indent-item-generic):
* lisp/org/org-mhe.el (org-mhe-get-message-folder-from-index):
* lisp/org/org-mobile.el (org-mobile-apply):
* lisp/org/org-mouse.el (org-mouse-context-menu):
* lisp/org/org-plot.el (org-plot/gnuplot):
* lisp/org/org-protocol.el (org-protocol-flatten-greedy):
* lisp/org/org-table.el (org-table-copy-down)
(org-table-formula-make-cmp-string)
(org-table-get-stored-formulas, org-table-recalculate)
(org-table-edit-formulas):
* lisp/org/org.el (org-translate-link-from-planner)
(org-fill-line-break-nobreak-p):
* lisp/org/ox-ascii.el (org-ascii-item):
* lisp/org/ox-latex.el (org-latex-clean-invalid-line-breaks):
* lisp/org/ox.el (org-export-expand-include-keyword):
* lisp/progmodes/ada-xref.el (ada-treat-cmd-string):
* lisp/progmodes/cfengine.el (cfengine2-font-lock-keywords):
* lisp/progmodes/cperl-mode.el (cperl-to-comment-or-eol)
(cperl-find-pods-heres, cperl-fix-line-spacing)
(cperl-have-help-regexp, cperl-word-at-point-hard)
(cperl-make-regexp-x):
* lisp/progmodes/dcl-mode.el (dcl-option-value-offset):
* lisp/progmodes/etags.el (tag-implicit-name-match-p):
* lisp/progmodes/fortran.el (fortran-fill):
* lisp/progmodes/gdb-mi.el (gdb-speedbar-expand-node)
(gdb-locals-handler-custom):
* lisp/progmodes/grep.el (grep-mode-font-lock-keywords):
* lisp/progmodes/gud.el (gud-jdb-find-source-using-classpath):
* lisp/progmodes/js.el (js--continued-expression-p):
* lisp/progmodes/m4-mode.el (m4-font-lock-keywords):
* lisp/progmodes/meta-mode.el (meta-indent-level-count):
* lisp/progmodes/mixal-mode.el (mixal-font-lock-keywords):
* lisp/progmodes/opascal.el (opascal-find-unit-in-directory):
* lisp/progmodes/pascal.el (pascal-progbeg-re):
* lisp/progmodes/ruby-mode.el (ruby-expression-expansion-re)
(ruby-expr-beg, ruby-parse-partial)
(ruby-toggle-string-quotes, ruby-font-lock-keywords):
* lisp/progmodes/sql.el (sql--make-help-docstring):
* lisp/progmodes/verilog-mode.el (verilog-coverpoint-re)
(verilog-skip-forward-comment-p)
(verilog-read-sub-decls-gate)
(verilog-read-auto-template-middle):
* lisp/progmodes/vhdl-mode.el (vhdl-resolve-env-variable)
(vhdl-speedbar-expand-project, vhdl-speedbar-expand-entity)
(vhdl-speedbar-expand-architecture)
(vhdl-speedbar-expand-config, vhdl-speedbar-expand-package)
(vhdl-speedbar-dired):
* lisp/speedbar.el (speedbar-dired, speedbar-tag-file)
(speedbar-tag-expand):
* lisp/textmodes/dns-mode.el (dns-mode-font-lock-keywords):
* lisp/textmodes/flyspell.el (flyspell-debug-signal-word-checked):
* lisp/textmodes/ispell.el (ispell-process-line):
* lisp/textmodes/reftex-cite.el (reftex-end-of-bib-entry):
* lisp/textmodes/reftex-ref.el (reftex-replace-prefix-escapes):
* lisp/url/url-parse.el (url-generic-parse-url):
* lisp/url/url-util.el (url-truncate-url-for-viewing):
* lisp/vc/diff-mode.el (diff-unified->context):
* lisp/vc/vc-bzr.el (vc-bzr-error-regexp-alist):
* lisp/vc/vc-cvs.el (vc-cvs-parse-status):
* lisp/woman.el (woman0-el, woman-if-ignore)
(woman-change-fonts):
* lisp/xdg.el (xdg--substitute-home-env):
Fix regular-expression infelicities and typos.
Fix regular expression typos
Fix typos reported by Mattias Engdegård in:
that occurred in preloaded modules.
* lisp/frame.el (frame-set-background-mode):
* lisp/international/mule.el (sgml-html-meta-auto-coding-function):
* lisp/isearch.el (isearch-pre-command-hook):
* lisp/minibuffer.el (completion--embedded-envvar-re):
2019-03-04 18:00:00 -08:00
|
|
|
|
(and (string-match "^\\$HOME/" str)
|
2017-02-12 20:25:57 -05:00
|
|
|
|
(replace-match "~/" t nil str 0)))))
|
|
|
|
|
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(defun xdg--user-dirs-parse-line ()
|
|
|
|
|
"Return pair of user-dirs key to directory value in LINE, otherwise nil.
|
|
|
|
|
This should be called at the beginning of a line."
|
|
|
|
|
(skip-chars-forward "[:blank:]")
|
|
|
|
|
(when (and (/= (following-char) ?#)
|
|
|
|
|
(looking-at xdg-line-regexp))
|
|
|
|
|
(let ((k (match-string 1))
|
|
|
|
|
(v (match-string 2)))
|
2017-02-12 20:25:57 -05:00
|
|
|
|
(when (and k v) (cons k (xdg--substitute-home-env v))))))
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
|
|
|
|
(defun xdg--user-dirs-parse-file (filename)
|
2021-09-14 08:43:18 +02:00
|
|
|
|
"Return alist of `xdg-user-dirs' from FILENAME."
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(let (elt res)
|
2017-09-06 13:17:05 -04:00
|
|
|
|
(when (file-readable-p filename)
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents filename)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(setq elt (xdg--user-dirs-parse-line))
|
|
|
|
|
(when (consp elt) (push elt res))
|
|
|
|
|
(forward-line))))
|
2017-02-06 23:27:47 -05:00
|
|
|
|
res))
|
|
|
|
|
|
|
|
|
|
(defun xdg-user-dir (name)
|
2017-09-09 00:46:41 -04:00
|
|
|
|
"Return the directory referred to by NAME."
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(when (null xdg-user-dirs)
|
2017-09-09 00:46:41 -04:00
|
|
|
|
(setq xdg-user-dirs
|
|
|
|
|
(xdg--user-dirs-parse-file
|
|
|
|
|
(expand-file-name "user-dirs.dirs" (xdg-config-home)))))
|
2017-02-12 20:25:57 -05:00
|
|
|
|
(let ((dir (cdr (assoc name xdg-user-dirs))))
|
|
|
|
|
(when dir (expand-file-name dir))))
|
2017-02-06 23:27:47 -05:00
|
|
|
|
|
2017-09-06 13:17:05 -04:00
|
|
|
|
|
|
|
|
|
;; Desktop Entry Specification
|
|
|
|
|
;; https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-1.1.html
|
|
|
|
|
|
|
|
|
|
(defconst xdg-desktop-group-regexp
|
|
|
|
|
(rx "[" (group-n 1 (+? (in " -Z\\^-~"))) "]")
|
|
|
|
|
"Regexp matching desktop file group header names.")
|
|
|
|
|
|
|
|
|
|
;; TODO Localized strings left out intentionally, as Emacs has no
|
|
|
|
|
;; notion of l10n/i18n
|
|
|
|
|
(defconst xdg-desktop-entry-regexp
|
|
|
|
|
(rx (group-n 1 (+ (in "A-Za-z0-9-")))
|
2017-09-10 12:20:06 -04:00
|
|
|
|
;; (? "[" (group-n 3 (+ nonl)) "]")
|
2017-09-06 13:17:05 -04:00
|
|
|
|
(* blank) "=" (* blank)
|
|
|
|
|
(group-n 2 (* nonl)))
|
|
|
|
|
"Regexp matching desktop file entry key-value pairs.")
|
|
|
|
|
|
2017-09-09 11:55:09 -04:00
|
|
|
|
(defun xdg-desktop-read-group ()
|
|
|
|
|
"Return hash table of group of desktop entries in the current buffer."
|
|
|
|
|
(let ((res (make-hash-table :test #'equal)))
|
|
|
|
|
(while (not (or (eobp) (looking-at xdg-desktop-group-regexp)))
|
|
|
|
|
(skip-chars-forward "[:blank:]")
|
|
|
|
|
(cond
|
|
|
|
|
((eolp))
|
|
|
|
|
((= (following-char) ?#))
|
|
|
|
|
((looking-at xdg-desktop-entry-regexp)
|
|
|
|
|
(puthash (match-string 1) (match-string 2) res))
|
2017-09-09 23:12:47 -04:00
|
|
|
|
;; Filter localized strings
|
|
|
|
|
((looking-at (rx (group-n 1 (+ (in alnum "-"))) (* blank) "[")))
|
2017-09-09 11:55:09 -04:00
|
|
|
|
(t (error "Malformed line: %s"
|
2022-08-23 04:54:57 +02:00
|
|
|
|
(buffer-substring (point) (line-end-position)))))
|
2017-09-09 11:55:09 -04:00
|
|
|
|
(forward-line))
|
2017-09-06 13:17:05 -04:00
|
|
|
|
res))
|
|
|
|
|
|
2017-09-09 11:55:09 -04:00
|
|
|
|
(defun xdg-desktop-read-file (filename &optional group)
|
|
|
|
|
"Return group contents of desktop file FILENAME as a hash table.
|
|
|
|
|
Optional argument GROUP defaults to the string \"Desktop Entry\"."
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert-file-contents-literally filename)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (and (skip-chars-forward "[:blank:]" (line-end-position))
|
|
|
|
|
(or (eolp) (= (following-char) ?#)))
|
|
|
|
|
(forward-line))
|
|
|
|
|
(unless (looking-at xdg-desktop-group-regexp)
|
|
|
|
|
(error "Expected group name! Instead saw: %s"
|
2022-08-23 04:54:57 +02:00
|
|
|
|
(buffer-substring (point) (line-end-position))))
|
2017-09-09 11:55:09 -04:00
|
|
|
|
(when group
|
|
|
|
|
(while (and (re-search-forward xdg-desktop-group-regexp nil t)
|
|
|
|
|
(not (equal (match-string 1) group)))))
|
|
|
|
|
(forward-line)
|
|
|
|
|
(xdg-desktop-read-group)))
|
|
|
|
|
|
2017-09-06 13:17:05 -04:00
|
|
|
|
(defun xdg-desktop-strings (value)
|
|
|
|
|
"Partition VALUE into elements delimited by unescaped semicolons."
|
|
|
|
|
(let (res)
|
2017-09-09 00:46:41 -04:00
|
|
|
|
(setq value (string-trim-left value))
|
Use string-replace instead of replace-regexp-in-string
`string-replace` is easier to understand, less error-prone, much
faster, and results in shorter Lisp and byte code. Use it where
applicable and obviously safe (erring on the conservative side).
* admin/authors.el (authors-scan-change-log):
* lisp/autoinsert.el (auto-insert-alist):
* lisp/calc/calc-prog.el (calc-edit-macro-combine-alg-ent)
(calc-edit-macro-combine-ext-command)
(calc-edit-macro-combine-var-name):
* lisp/calc/calc-units.el (math-make-unit-string):
* lisp/calendar/cal-html.el (cal-html-comment):
* lisp/calendar/cal-tex.el (cal-tex-comment):
* lisp/calendar/icalendar.el (icalendar--convert-string-for-export)
(icalendar--convert-string-for-import):
* lisp/calendar/iso8601.el (iso8601--concat-regexps)
(iso8601--full-time-match, iso8601--combined-match):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/todo-mode.el (todo-filter-items-filename):
* lisp/cedet/cedet-files.el (cedet-directory-name-to-file-name)
(cedet-file-name-to-directory-name):
* lisp/comint.el (comint-watch-for-password-prompt):
* lisp/dired-aux.el (dired-do-chmod):
* lisp/dired-x.el (dired-man):
* lisp/dired.el (dired-insert-directory, dired-goto-file-1):
* lisp/emacs-lisp/comp.el (comp-c-func-name):
* lisp/emacs-lisp/re-builder.el (reb-copy):
* lisp/erc/erc-dcc.el (erc-dcc-unquote-filename):
* lisp/erc/erc.el (erc-quit-reason-zippy, erc-part-reason-zippy)
(erc-update-mode-line-buffer, erc-message-english-PART):
* lisp/files.el (make-backup-file-name-1, files--transform-file-name)
(read-file-modes):
* lisp/fringe.el (fringe-mode):
* lisp/gnus/gnus-art.el (gnus-button-handle-info-url):
* lisp/gnus/gnus-group.el (gnus-group-completing-read):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-ical):
* lisp/gnus/gnus-mlspl.el (gnus-group-split-fancy):
* lisp/gnus/gnus-search.el (gnus-search-query-parse-date)
(gnus-search-transform-expression, gnus-search-run-search):
* lisp/gnus/gnus-start.el (gnus-dribble-enter):
* lisp/gnus/gnus-sum.el (gnus-summary-refer-article):
* lisp/gnus/gnus-util.el (gnus-mode-string-quote):
* lisp/gnus/message.el (message-put-addresses-in-ecomplete)
(message-parse-mailto-url, message-mailto-1):
* lisp/gnus/mml-sec.el (mml-secure-epg-sign):
* lisp/gnus/mml-smime.el (mml-smime-epg-verify):
* lisp/gnus/mml2015.el (mml2015-epg-verify):
* lisp/gnus/nnmaildir.el (nnmaildir--system-name)
(nnmaildir-request-list, nnmaildir-retrieve-groups)
(nnmaildir-request-group, nnmaildir-retrieve-headers):
* lisp/gnus/nnrss.el (nnrss-node-text):
* lisp/gnus/spam-report.el (spam-report-gmane-internal)
(spam-report-user-mail-address):
* lisp/ibuffer.el (name):
* lisp/image-dired.el (image-dired-pngnq-thumb)
(image-dired-pngcrush-thumb, image-dired-optipng-thumb)
(image-dired-create-thumb-1):
* lisp/info.el (Info-set-mode-line):
* lisp/international/mule-cmds.el (describe-language-environment):
* lisp/mail/rfc2231.el (rfc2231-parse-string):
* lisp/mail/rfc2368.el (rfc2368-parse-mailto-url):
* lisp/mail/rmail.el (rmail-insert-inbox-text)
(rmail-simplified-subject-regexp):
* lisp/mail/rmailout.el (rmail-output-body-to-file):
* lisp/mail/undigest.el (rmail-digest-rfc1153):
* lisp/man.el (Man-default-man-entry):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc--debug):
* lisp/net/browse-url.el (browse-url-mail):
* lisp/net/eww.el (eww-update-header-line-format):
* lisp/net/newst-backend.el (newsticker-save-item):
* lisp/net/rcirc.el (rcirc-sentinel):
* lisp/net/soap-client.el (soap-decode-date-time):
* lisp/nxml/rng-cmpct.el (rng-c-literal-2-re):
* lisp/nxml/xmltok.el (let*):
* lisp/obsolete/nnir.el (nnir-run-swish-e, nnir-run-hyrex)
(nnir-run-find-grep):
* lisp/play/dunnet.el (dun-doassign):
* lisp/play/handwrite.el (handwrite):
* lisp/proced.el (proced-format-args):
* lisp/profiler.el (profiler-report-header-line-format):
* lisp/progmodes/gdb-mi.el (gdb-mi-quote):
* lisp/progmodes/make-mode.el (makefile-bsdmake-rule-action-regex)
(makefile-make-font-lock-keywords):
* lisp/progmodes/prolog.el (prolog-guess-fill-prefix):
* lisp/progmodes/ruby-mode.el (ruby-toggle-string-quotes):
* lisp/progmodes/sql.el (sql-remove-tabs-filter, sql-str-literal):
* lisp/progmodes/which-func.el (which-func-current):
* lisp/replace.el (query-replace-read-from)
(occur-engine, replace-quote):
* lisp/select.el (xselect--encode-string):
* lisp/ses.el (ses-export-tab):
* lisp/subr.el (shell-quote-argument):
* lisp/term/pc-win.el (msdos-show-help):
* lisp/term/w32-win.el (w32--set-selection):
* lisp/term/xterm.el (gui-backend-set-selection):
* lisp/textmodes/picture.el (picture-tab-search):
* lisp/thumbs.el (thumbs-call-setroot-command):
* lisp/tooltip.el (tooltip-show-help-non-mode):
* lisp/transient.el (transient-format-key):
* lisp/url/url-mailto.el (url-mailto):
* lisp/vc/log-edit.el (log-edit-changelog-ours-p):
* lisp/vc/vc-bzr.el (vc-bzr-status):
* lisp/vc/vc-hg.el (vc-hg--glob-to-pcre):
* lisp/vc/vc-svn.el (vc-svn-after-dir-status):
* lisp/xdg.el (xdg-desktop-strings):
* test/lisp/electric-tests.el (defun):
* test/lisp/term-tests.el (term-simple-lines):
* test/lisp/time-stamp-tests.el (formatz-mod-del-colons):
* test/lisp/wdired-tests.el (wdired-test-bug32173-01)
(wdired-test-unfinished-edit-01):
* test/src/json-tests.el (json-parse-with-custom-null-and-false-objects):
Use `string-replace` instead of `replace-regexp-in-string`.
2021-08-08 18:58:46 +02:00
|
|
|
|
(dolist (x (split-string (string-replace "\\;" "\0" value) ";"))
|
|
|
|
|
(push (string-replace "\0" ";" x) res))
|
2017-09-06 13:17:05 -04:00
|
|
|
|
(when (null (string-match-p "[^[:blank:]]" (car res))) (pop res))
|
|
|
|
|
(nreverse res)))
|
|
|
|
|
|
2022-09-14 10:15:26 +02:00
|
|
|
|
(defun xdg-current-desktop ()
|
|
|
|
|
"Return a list of strings identifying the current desktop environment.
|
|
|
|
|
|
|
|
|
|
According to the XDG Desktop Entry Specification version 0.5:
|
|
|
|
|
|
|
|
|
|
If $XDG_CURRENT_DESKTOP is set then it contains a
|
|
|
|
|
colon-separated list of strings ... $XDG_CURRENT_DESKTOP
|
|
|
|
|
should have been set by the login manager, according to the
|
|
|
|
|
value of the DesktopNames found in the session file."
|
Mark if-let and when-let obsolete
* lisp/subr.el (if-let*, when-let*, if-let, when-let): Mark
if-let and when-let obsolete (bug#73853 and elsewhere). Move
docstring text around so that if-let* and when-let* descriptions
no longer refer to if-let and when-let.
* etc/NEWS: Announce the change.
* admin/admin.el (reminder-for-release-blocking-bugs):
* doc/misc/erc.texi (display-buffer):
* lisp/ansi-color.el (ansi-color-apply)
(ansi-color--face-vec-face):
* lisp/ansi-osc.el (ansi-osc-apply-on-region)
(ansi-osc-hyperlink):
* lisp/arc-mode.el (archive-goto-file)
(archive-next-file-displayer):
* lisp/auth-source-pass.el (auth-source-pass-search)
(auth-source-pass--parse-data)
(auth-source-pass--find-match-many):
* lisp/autorevert.el (auto-revert-notify-rm-watch):
* lisp/buff-menu.el (Buffer-menu-unmark-all-buffers)
(Buffer-menu-group-by-root):
* lisp/calendar/parse-time.el (parse-iso8601-time-string):
* lisp/cedet/pulse.el (pulse-tick):
* lisp/comint.el (comint--fontify-input-ppss-flush-indirect)
(comint--intersect-regions):
* lisp/completion-preview.el (completion-preview--try-table)
(completion-preview--capf-wrapper, completion-preview--update):
* lisp/cus-edit.el (setopt--set)
(custom-dirlocals-maybe-update-cons, custom-dirlocals-validate):
* lisp/custom.el (load-theme):
* lisp/descr-text.el (describe-char):
* lisp/desktop.el (desktop--emacs-pid-running-p):
* lisp/dired-x.el (menu):
* lisp/dired.el (dired-font-lock-keywords)
(dired-insert-directory, dired--insert-disk-space, dired-mode):
* lisp/dnd.el (dnd-handle-multiple-urls):
* lisp/dom.el (dom-remove-attribute):
* lisp/emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
* lisp/emacs-lisp/bytecomp.el (bytecomp--custom-declare):
* lisp/emacs-lisp/comp-common.el (comp-function-type-spec):
* lisp/emacs-lisp/comp-cstr.el (comp--all-classes)
(comp-cstr-set-range-for-arithm, comp--cstr-union-1-no-mem)
(comp-cstr-intersection-no-mem, comp-cstr-fixnum-p)
(comp-cstr-type-p):
* lisp/emacs-lisp/comp-run.el (comp-subr-trampoline-install)
(native--compile-async):
* lisp/emacs-lisp/comp.el (comp--get-function-cstr)
(comp--function-pure-p, comp--intern-func-in-ctxt)
(comp--addr-to-bb-name, comp--emit-assume, comp--maybe-add-vmvar)
(comp--add-call-cstr, comp--compute-dominator-tree)
(comp--dom-tree-walker, comp--ssa-rename)
(comp--function-call-maybe-fold, comp--fwprop-call)
(comp--call-optim-func):
* lisp/emacs-lisp/edebug.el (edebug-global-prefix)
(edebug-remove-instrumentation):
* lisp/emacs-lisp/eieio.el (initialize-instance):
* lisp/emacs-lisp/ert-x.el (ert-resource-directory):
* lisp/emacs-lisp/ert.el (ert--expand-should-1)
(ert-test-location, ert-write-junit-test-report)
(ert-test--erts-test):
* lisp/emacs-lisp/icons.el (icon-complete-spec, icon-string)
(icons--create):
* lisp/emacs-lisp/lisp-mode.el (lisp--local-defform-body-p):
* lisp/emacs-lisp/loaddefs-gen.el
(loaddefs-generate--make-autoload)
(loaddefs-generate--parse-file):
* lisp/emacs-lisp/multisession.el
(multisession-edit-mode--revert, multisession-edit-value):
* lisp/emacs-lisp/package-vc.el (package-vc--read-archive-data)
(package-vc--version, package-vc--clone):
* lisp/emacs-lisp/package.el (package--reload-previously-loaded):
* lisp/emacs-lisp/pp.el (pp--insert-lisp):
* lisp/emacs-lisp/subr-x.el (add-display-text-property):
* lisp/emacs-lisp/tabulated-list.el (tabulated-list-print):
* lisp/emacs-lisp/timer.el (run-at-time):
* lisp/emacs-lisp/vtable.el (vtable-goto-table)
(vtable-goto-column, vtable-update-object, vtable--insert-line)
(vtable--compute-widths, vtable--make-keymap):
* lisp/emacs-lisp/warnings.el (display-warning):
* lisp/epa-file.el (epa-file-insert-file-contents):
* lisp/epa.el (epa-show-key):
* lisp/erc/erc-backend.el (erc--split-line, erc--conceal-prompt)
(PRIVMSG, erc--get-isupport-entry):
* lisp/erc/erc-button.el (erc-button-add-nickname-buttons)
(erc--button-next):
* lisp/erc/erc-common.el (erc--find-group):
* lisp/erc/erc-fill.el (erc-fill, erc-fill-static)
(erc-fill--wrap-escape-hidden-speaker)
(erc-fill--wrap-unmerge-on-date-stamp)
(erc-fill--wrap-massage-initial-message-post-clear)
(erc-fill-wrap, erc-fill--wrap-rejigger-region):
* lisp/erc/erc-goodies.el (erc--scrolltobottom-all)
(erc--keep-place-indicator-on-window-buffer-change)
(keep-place-indicator, erc--keep-place-indicator-adjust-on-clear)
(erc-keep-place-move, erc--command-indicator-display):
* lisp/erc/erc-ibuffer.el (erc-members):
* lisp/erc/erc-join.el (erc-join--remove-requested-channel)
(erc-autojoin--join):
* lisp/erc/erc-networks.el
(erc-networks--id-qualifying-init-parts, erc-networks--id-reload)
(erc-networks--id-ensure-comparable)
(erc-networks--reclaim-orphaned-target-buffers)
(erc-networks--server-select):
* lisp/erc/erc-nicks.el (erc-nicks-invert)
(erc-nicks--redirect-face-widget-link, erc-nicks--highlight)
(erc-nicks--highlight-button)
(erc-nicks--list-faces-help-button-action, erc-nicks-list-faces)
(erc-nicks-refresh, erc-nicks--colors-from-faces)
(erc-nicks--track-prioritize)
(erc-nicks--remember-face-for-track):
* lisp/erc/erc-notify.el (querypoll, erc--querypoll-get-next)
(erc--querypoll-on-352, erc--querypoll-send):
* lisp/erc/erc-sasl.el (erc-sasl--read-password):
* lisp/erc/erc-services.el
(erc-services-issue-ghost-and-retry-nick):
* lisp/erc/erc-speedbar.el (erc-speedbar--ensure, nickbar)
(erc-speedbar-toggle-nicknames-window-lock)
(erc-speedbar--compose-nicks-face):
* lisp/erc/erc-stamp.el (erc-stamp--recover-on-reconnect)
(erc-stamp-prefix-log-filter, erc--conceal-prompt)
(erc--insert-timestamp-left, erc-insert-timestamp-right)
(erc-stamp--defer-date-insertion-on-post-modify)
(erc-insert-timestamp-left-and-right)
(erc-stamp--redo-right-stamp-post-clear)
(erc-stamp--reset-on-clear, erc-stamp--dedupe-date-stamps):
* lisp/erc/erc-status-sidebar.el (bufbar)
(erc-status-sidebar-prefer-target-as-name)
(erc-status-sidebar-default-allsort, erc-status-sidebar-click):
* lisp/erc/erc-track.el (erc-track--shortened-names-get)
(erc-track--setup, erc-track--select-mode-line-face)
(erc-track-modified-channels, erc-track--collect-faces-in)
(erc-track--switch-buffer, erc-track--replace-killed-buffer):
* lisp/erc/erc-truncate.el (erc-truncate--setup)
(erc-truncate-buffer):
* lisp/erc/erc.el (erc--ensure-query-member)
(erc--ensure-query-members, erc--remove-channel-users-but)
(erc--cusr-change-status, erc--find-mode, erc--update-modules)
(erc-log-irc-protocol, erc--refresh-prompt)
(erc--restore-important-text-props)
(erc--order-text-properties-from-hash, erc-send-input-line)
(erc-cmd-IGNORE, erc--unignore-user, erc-cmd-QUERY)
(erc-cmd-BANLIST, erc--speakerize-nick)
(erc--format-speaker-input-message, erc-channel-receive-names)
(erc-send-current-line, erc-format-target-and/or-network)
(erc-kill-buffer-function, erc-restore-text-properties)
(erc--get-eq-comparable-cmd):
* lisp/eshell/em-alias.el (eshell-maybe-replace-by-alias--which)
(eshell-maybe-replace-by-alias):
* lisp/eshell/em-glob.el (eshell-glob-convert):
* lisp/eshell/em-pred.el (eshell-pred-user-or-group)
(eshell-pred-file-time, eshell-pred-file-type)
(eshell-pred-file-mode, eshell-pred-file-links)
(eshell-pred-file-size):
* lisp/eshell/em-prompt.el (eshell-forward-paragraph)
(eshell-next-prompt):
* lisp/eshell/esh-arg.el (eshell-resolve-current-argument):
* lisp/eshell/esh-cmd.el (eshell-do-eval, eshell/which)
(eshell-plain-command--which, eshell-plain-command):
* lisp/eshell/esh-io.el (eshell-duplicate-handles)
(eshell-protect-handles, eshell-get-target, eshell-close-target):
* lisp/eshell/esh-proc.el (eshell-sentinel):
* lisp/eshell/esh-var.el (eshell-parse-variable-ref)
(eshell-get-variable, eshell-set-variable):
* lisp/faces.el (face-at-point):
* lisp/ffap.el (ffap-in-project):
* lisp/filenotify.el (file-notify--rm-descriptor):
* lisp/files-x.el (read-dir-locals-file)
(connection-local-update-profile-variables)
(connection-local-value):
* lisp/files.el (file-remote-p, abbreviate-file-name)
(set-auto-mode, hack-local-variables)
(revert-buffer-restore-read-only):
* lisp/find-dired.el (find-dired-sort-by-filename):
* lisp/font-lock.el (font-lock--filter-keywords):
* lisp/gnus/gnus-art.el (article-emojize-symbols):
* lisp/gnus/gnus-int.el (gnus-close-server):
* lisp/gnus/gnus-search.el (gnus-search-transform)
(gnus-search-indexed-parse-output, gnus-search-server-to-engine):
* lisp/gnus/gnus-sum.el (gnus-collect-urls, gnus-shorten-url):
* lisp/gnus/gnus.el (gnus-check-backend-function):
* lisp/gnus/message.el (message-send-mail):
* lisp/gnus/mml.el (mml-generate-mime, mml-insert-mime-headers):
* lisp/gnus/nnatom.el (nnatom--read-feed, nnatom--read-article)
(nnatom--read-article-or-group-authors, nnatom--read-publish)
(nnatom--read-update, nnatom--read-links):
* lisp/gnus/nnfeed.el (nnfeed--read-server, nnfeed--write-server)
(nnfeed--parse-feed, nnfeed--group-data, nnfeed-retrieve-article)
(nnfeed-retrieve-headers, nnfeed--print-part)
(nnfeed-request-article, nnfeed-request-group)
(nnfeed-request-list, nnfeed--group-description)
(nnfeed-request-group-description)
(nnfeed-request-list-newsgroups, nnfeed-request-rename-group):
* lisp/gnus/nnmh.el (nnmh-update-gnus-unreads):
* lisp/help-fns.el (help-find-source)
(help-fns--insert-menu-bindings, help-fns--mention-first-release)
(help-fns--mention-shortdoc-groups)
(help-fns--customize-variable-version)
(help-fns--face-custom-version-info, describe-mode):
* lisp/help-mode.el (help-make-xrefs):
* lisp/help.el (help-key-description, help--describe-command):
* lisp/hfy-cmap.el (htmlfontify-load-rgb-file):
* lisp/ibuf-ext.el (ibuffer-jump-to-filter-group)
(ibuffer-kill-filter-group, ibuffer-kill-line)
(ibuffer-save-filter-groups, ibuffer-save-filters, filename)
(basename, file-extension, ibuffer-diff-buffer-with-file-1)
(ibuffer-mark-by-file-name-regexp)
(ibuffer-mark-by-content-regexp):
* lisp/ibuf-macs.el (ibuffer-aif, ibuffer-awhen):
* lisp/ibuffer.el (ibuffer-mouse-toggle-mark)
(ibuffer-toggle-marks, ibuffer-mark-interactive)
(ibuffer-compile-format, process, ibuffer-map-lines):
* lisp/image.el (image--compute-map)
(image--compute-original-map):
* lisp/image/exif.el (exif-parse-buffer):
* lisp/image/image-converter.el (image-convert-p, image-convert)
(image-converter--find-converter):
* lisp/image/image-dired-util.el
(image-dired-file-name-at-point):
* lisp/image/image-dired.el (image-dired-track-original-file)
(image-dired--on-file-in-dired-buffer)
(image-dired--with-thumbnail-buffer)
(image-dired-jump-original-dired-buffer)
(image-dired--slideshow-step, image-dired-display-image):
* lisp/image/wallpaper.el (wallpaper--init-action-kill)
(wallpaper--find-setter, wallpaper--find-command)
(wallpaper--find-command-args, wallpaper--x-monitor-name):
* lisp/info-look.el (info-lookup-interactive-arguments)
(info-complete)::(:mode):
* lisp/info.el (info-pop-to-buffer, Info-read-node-name-1):
* lisp/international/emoji.el (emoji--adjust-displayable-1)
(emoji--add-recent):
* lisp/jsonrpc.el (jsonrpc--call-deferred)
(jsonrpc--process-sentinel, jsonrpc--remove):
* lisp/keymap.el (keymap-local-lookup):
* lisp/mail/emacsbug.el (report-emacs-bug-hook)
(submit-emacs-patch):
* lisp/mail/ietf-drums.el (ietf-drums-parse-addresses):
* lisp/mail/mailclient.el (mailclient-send-it):
* lisp/mail/rfc6068.el (rfc6068-parse-mailto-url):
* lisp/mail/undigest.el (rmail-digest-parse-mixed-mime):
* lisp/minibuffer.el (completion-metadata-get)
(completions--after-change)
(minibuffer-visible-completions--filter):
* lisp/net/browse-url.el (browse-url-url-at-point)
(browse-url-file-url, browse-url-emacs):
* lisp/net/dbus.el (dbus-byte-array-to-string)
(dbus-monitor-goto-serial):
* lisp/net/dictionary.el (dictionary-search):
* lisp/net/eww.el (eww--download-directory)
(eww-auto-rename-buffer, eww-open-in-new-buffer, eww-submit)
(eww-follow-link, eww-read-alternate-url)
(eww-copy-alternate-url):
* lisp/net/goto-addr.el (goto-address-at-point):
* lisp/net/mailcap.el (mailcap-mime-info):
* lisp/net/rcirc.el (rcirc, rcirc-connect, rcirc-send-string)
(rcirc-kill-buffer-hook, rcirc-print, rcirc-when)
(rcirc-color-attributes, rcirc-handler-NICK)
(rcirc-handler-TAGMSG, rcirc-handler-BATCH):
* lisp/net/shr.el (shr-descend, shr-adaptive-fill-function)
(shr-correct-dom-case, shr-tag-a):
* lisp/net/sieve.el (sieve-manage-quit):
* lisp/outline.el (outline-cycle-buffer):
* lisp/pcmpl-git.el (pcmpl-git--tracked-file-predicate):
* lisp/proced.el (proced-auto-update-timer):
* lisp/progmodes/bug-reference.el
(bug-reference-try-setup-from-vc):
* lisp/progmodes/c-ts-common.el (c-ts-common--fill-paragraph):
* lisp/progmodes/c-ts-mode.el (c-ts-mode--preproc-offset)
(c-ts-mode--anchor-prev-sibling, c-ts-mode-indent-defun):
* lisp/progmodes/compile.el (compilation-error-properties)
(compilation-find-file-1):
* lisp/progmodes/eglot.el (eglot--check-object)
(eglot--read-server, eglot-upgrade-eglot)
(eglot-handle-notification, eglot--CompletionParams)
(eglot-completion-at-point, eglot--sig-info)
(eglot-register-capability):
* lisp/progmodes/elisp-mode.el
(emacs-lisp-native-compile-and-load)
(elisp-eldoc-var-docstring-with-value):
* lisp/progmodes/erts-mode.el (erts-mode--goto-start-of-test):
* lisp/progmodes/flymake.el (flymake--update-eol-overlays)
(flymake-eldoc-function):
* lisp/progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom)
(gdb-frame-handler):
* lisp/progmodes/go-ts-mode.el (go-ts-mode-docstring)
(go-ts-mode--comment-on-previous-line-p)
(go-ts-mode--get-test-regexp-at-point)
(go-ts-mode-test-this-file):
* lisp/progmodes/grep.el (lgrep, rgrep-default-command)
(grep-file-at-point):
* lisp/progmodes/perl-mode.el (perl--end-of-format-p):
* lisp/progmodes/php-ts-mode.el
(php-ts-mode--anchor-prev-sibling, php-ts-mode--indent-defun):
* lisp/progmodes/project.el (project--other-place-command)
(project--find-default-from, project--transplant-file-name)
(project-prefixed-buffer-name, project--remove-from-project-list)
(project-prompt-project-name, project-remember-projects-under)
(project--switch-project-command)
(project-uniquify-dirname-transform, project-mode-line-format):
* lisp/progmodes/python.el
(python-font-lock-keywords-maximum-decoration)
(python--treesit-fontify-union-types)
(python-shell-get-process-name, python-shell-restart)
(python-shell-completion-at-point, python-ffap-module-path)
(python-util-comint-end-of-output-p, python--import-sources)
(python-add-import, python-remove-import, python-fix-imports):
* lisp/progmodes/xref.el (xref--add-log-current-defun):
* lisp/repeat.el (repeat-echo-message-string):
* lisp/saveplace.el (save-place-dired-hook):
* lisp/server.el (server-save-buffers-kill-terminal):
* lisp/shadowfile.el (shadow-make-fullname)
(shadow-contract-file-name, shadow-define-literal-group):
* lisp/shell.el (shell-highlight-undef-mode):
* lisp/simple.el (command-completion-using-modes-p)
(command-execute, file-user-uid, file-group-gid)
(first-completion, last-completion, switch-to-completions):
* lisp/startup.el (startup--load-user-init-file):
* lisp/tab-line.el (tab-line-tabs-buffer-group-by-project):
* lisp/tar-mode.el (tar-goto-file, tar-next-file-displayer):
* lisp/term/android-win.el (android-encode-select-string)
(gui-backend-set-selection):
* lisp/term/haiku-win.el (haiku-dnd-convert-string)
(haiku-select-encode-xstring, haiku-select-encode-utf-8-string):
* lisp/textmodes/emacs-news-mode.el (emacs-news--buttonize):
* lisp/textmodes/ispell.el (ispell-completion-at-point):
* lisp/textmodes/sgml-mode.el (sgml-validate)
(html-mode--complete-at-point):
* lisp/textmodes/tex-mode.el (tex-recenter-output-buffer)
(xref-backend-references):
* lisp/thingatpt.el (thing-at-point-file-at-point)
(thing-at-point-face-at-point):
* lisp/thread.el (thread-list--get-status):
* lisp/time.el (world-clock-copy-time-as-kill, world-clock):
* lisp/touch-screen.el (touch-screen-handle-touch):
* lisp/treesit.el (treesit-language-at, treesit-node-at)
(treesit-node-on, treesit-buffer-root-node)
(treesit-node-field-name, treesit-local-parsers-at)
(treesit-local-parsers-on, treesit--cleanup-local-range-overlays)
(treesit-font-lock-recompute-features)
(treesit-font-lock-fontify-region, treesit-transpose-sexps)
(treesit-add-log-current-defun, treesit-major-mode-setup)
(treesit--explorer-refresh, treesit-install-language-grammar):
* lisp/url/url.el (url-retrieve-synchronously):
* lisp/vc/smerge-mode.el (smerge-diff):
* lisp/vc/vc-dir.el (vc-dir):
* lisp/vc/vc-dispatcher.el (vc-do-async-command):
* lisp/vc/vc-git.el (vc-git-dir--branch-headers)
(vc-git-dir--stash-headers, vc-git--log-edit-summary-check)
(vc-git-stash-list):
* lisp/vc/vc.el (vc-responsible-backend, vc-buffer-sync-fileset)
(vc-clone):
* lisp/visual-wrap.el (visual-wrap--apply-to-line):
* lisp/wid-edit.el (widget-text)
(widget-editable-list-insert-before):
* lisp/window-tool-bar.el
(window-tool-bar--keymap-entry-to-string):
* lisp/window.el (display-buffer, display-buffer-full-frame)
(window-point-context-set, window-point-context-use)
(window-point-context-use-default-function):
* lisp/xdg.el (xdg-current-desktop):
* lisp/xwidget.el (xwidget-webkit-callback):
* lisp/yank-media.el (yank-media--get-selection)
(yank-media-types):
* test/lisp/comint-tests.el
(comint-tests/test-password-function):
* test/lisp/completion-preview-tests.el
(completion-preview-tests--capf):
* test/lisp/cus-edit-tests.el (with-cus-edit-test):
* test/lisp/erc/erc-scenarios-base-local-modules.el
(-phony-sblm-):
* test/lisp/erc/erc-scenarios-stamp.el
(erc-scenarios-stamp--on-post-modify):
* test/lisp/erc/erc-services-tests.el
(erc-services-tests--asp-parse-entry):
* test/lisp/erc/erc-tests.el (erc-modules--internal-property)
(erc--find-mode, erc-tests--update-modules):
* test/lisp/erc/resources/erc-d/erc-d-i.el
(erc-d-i--parse-message):
* test/lisp/erc/resources/erc-d/erc-d-t.el
(erc-d-t-kill-related-buffers, erc-d-t-with-cleanup):
* test/lisp/erc/resources/erc-d/erc-d-tests.el
(erc-d-i--parse-message--irc-parser-tests):
* test/lisp/erc/resources/erc-d/erc-d-u.el
(erc-d-u--read-exchange-slowly):
* test/lisp/erc/resources/erc-d/erc-d.el (erc-d--expire)
(erc-d--finalize-done, erc-d--command-handle-all):
* test/lisp/erc/resources/erc-scenarios-common.el
(erc-scenarios-common-with-cleanup):
* test/lisp/erc/resources/erc-tests-common.el
(erc-tests--common-display-message)
(erc-tests-common-create-subprocess):
* test/lisp/ibuffer-tests.el (ibuffer-test-Bug25058):
* test/lisp/international/mule-tests.el
(mule-cmds-tests--ucs-names-missing-names):
* test/lisp/progmodes/python-tests.el
(python-tests-get-shell-interpreter)
(python-tests--get-interpreter-info):
* test/lisp/progmodes/ruby-ts-mode-tests.el
(ruby-ts-resource-file):
* test/lisp/replace-tests.el (replace-tests-with-undo):
* test/src/emacs-tests.el (emacs-tests--seccomp-debug):
* test/src/process-tests.el (process-tests--emacs-command)
(process-tests--emacs-binary, process-tests--dump-file):
* test/src/treesit-tests.el (treesit--ert-test-defun-navigation):
Replace use of the now-obsolete if-let and when-let.
2024-10-24 16:50:07 +08:00
|
|
|
|
(when-let* ((ret (getenv "XDG_CURRENT_DESKTOP")))
|
2022-09-14 10:15:26 +02:00
|
|
|
|
(string-split ret ":")))
|
|
|
|
|
|
2017-09-24 22:28:51 -04:00
|
|
|
|
|
|
|
|
|
;; MIME apps specification
|
|
|
|
|
;; https://standards.freedesktop.org/mime-apps-spec/mime-apps-spec-1.0.1.html
|
|
|
|
|
|
|
|
|
|
(defvar xdg-mime-table nil
|
|
|
|
|
"Table of MIME type to desktop file associations.
|
|
|
|
|
The table is an alist with keys being MIME major types (\"application\",
|
|
|
|
|
\"audio\", etc.), and values being hash tables. Each hash table has
|
|
|
|
|
MIME subtypes as keys and lists of desktop file absolute filenames.")
|
|
|
|
|
|
|
|
|
|
(defun xdg-mime-apps-files ()
|
|
|
|
|
"Return a list of files containing MIME/Desktop associations.
|
|
|
|
|
The list is in order of descending priority: user config, then
|
|
|
|
|
admin config, and finally system cached associations."
|
|
|
|
|
(let ((xdg-data-dirs (xdg-data-dirs))
|
|
|
|
|
(desktop (getenv "XDG_CURRENT_DESKTOP"))
|
|
|
|
|
res)
|
|
|
|
|
(when desktop
|
2021-05-31 06:36:23 +02:00
|
|
|
|
(setq desktop (list (format "%s-mimeapps.list" desktop))))
|
2017-09-24 22:28:51 -04:00
|
|
|
|
(dolist (name (cons "mimeapps.list" desktop))
|
|
|
|
|
(push (expand-file-name name (xdg-config-home)) res)
|
|
|
|
|
(push (expand-file-name (format "applications/%s" name) (xdg-data-home))
|
|
|
|
|
res)
|
|
|
|
|
(dolist (dir (xdg-config-dirs))
|
|
|
|
|
(push (expand-file-name name dir) res))
|
|
|
|
|
(dolist (dir xdg-data-dirs)
|
|
|
|
|
(push (expand-file-name (format "applications/%s" name) dir) res)))
|
|
|
|
|
(dolist (dir xdg-data-dirs)
|
|
|
|
|
(push (expand-file-name "applications/mimeinfo.cache" dir) res))
|
|
|
|
|
(nreverse res)))
|
|
|
|
|
|
|
|
|
|
(defun xdg-mime-collect-associations (mime files)
|
|
|
|
|
"Return a list of desktop file names associated with MIME.
|
|
|
|
|
The associations are searched in the list of file names FILES,
|
|
|
|
|
which is expected to be ordered by priority as in
|
|
|
|
|
`xdg-mime-apps-files'."
|
|
|
|
|
(let ((regexp (concat (regexp-quote mime) "=\\([^[:cntrl:]]*\\)$"))
|
|
|
|
|
res sec defaults added removed cached)
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(dolist (f (reverse files))
|
|
|
|
|
(when (file-readable-p f)
|
|
|
|
|
(insert-file-contents-literally f nil nil nil t)
|
|
|
|
|
(goto-char (point-min))
|
2021-03-11 13:29:14 -05:00
|
|
|
|
(let () ;; end
|
|
|
|
|
(while (not (or (eobp))) ;; end
|
2017-09-24 22:28:51 -04:00
|
|
|
|
(if (= (following-char) ?\[)
|
|
|
|
|
(progn (setq sec (char-after (1+ (point))))
|
|
|
|
|
(forward-line))
|
|
|
|
|
(if (not (looking-at regexp))
|
|
|
|
|
(forward-line)
|
|
|
|
|
(dolist (str (xdg-desktop-strings (match-string 1)))
|
|
|
|
|
(cl-pushnew str
|
|
|
|
|
(cond ((eq sec ?D) defaults)
|
|
|
|
|
((eq sec ?A) added)
|
|
|
|
|
((eq sec ?R) removed)
|
|
|
|
|
((eq sec ?M) cached))
|
|
|
|
|
:test #'equal))
|
|
|
|
|
(while (and (zerop (forward-line))
|
|
|
|
|
(/= (following-char) ?\[)))))))
|
|
|
|
|
;; Accumulate results into res
|
|
|
|
|
(dolist (f cached)
|
|
|
|
|
(when (not (member f removed)) (cl-pushnew f res :test #'equal)))
|
|
|
|
|
(dolist (f added)
|
|
|
|
|
(when (not (member f removed)) (push f res)))
|
|
|
|
|
(dolist (f removed)
|
|
|
|
|
(setq res (delete f res)))
|
|
|
|
|
(dolist (f defaults)
|
|
|
|
|
(push f res))
|
|
|
|
|
(setq defaults nil added nil removed nil cached nil))))
|
|
|
|
|
(delete-dups res)))
|
|
|
|
|
|
|
|
|
|
(defun xdg-mime-apps (mime)
|
|
|
|
|
"Return list of desktop files associated with MIME, otherwise nil.
|
|
|
|
|
The list is in order of descending priority, and each element is
|
|
|
|
|
an absolute file name of a readable file.
|
|
|
|
|
Results are cached in `xdg-mime-table'."
|
|
|
|
|
(pcase-let ((`(,type ,subtype) (split-string mime "/"))
|
|
|
|
|
(xdg-data-dirs (xdg-data-dirs))
|
|
|
|
|
(caches (xdg-mime-apps-files))
|
|
|
|
|
(files ()))
|
|
|
|
|
(let ((mtim1 (get 'xdg-mime-table 'mtime))
|
|
|
|
|
(mtim2 (cl-loop for f in caches when (file-readable-p f)
|
file-attributes cleanup
Mostly, this replaces magic-number calls like (nth 4 A) with
more-informative calls like (file-attribute-access-time A).
It also fixes some documentation and minor timestamp coding
issues that I noticed while looking into this.
* doc/lispref/files.texi (File Attributes):
* lisp/files.el (file-attribute-size)
(file-attribute-inode-number, file-attribute-device-number):
* src/dired.c (Fdirectory_files_and_attributes)
(Ffile_attributes):
Mention which attributes must be integers, or nonnegative integers,
as opposed to merely being numbers. Remove no-longer-correct
talk about representing large integers as conses of integers.
* doc/lispref/files.texi (Magic File Names):
* doc/misc/gnus.texi (Low-level interface to the spam-stat dictionary):
* lisp/autorevert.el (auto-revert-find-file-function)
(auto-revert-tail-mode, auto-revert-handler):
* lisp/auth-source.el (auth-source-netrc-parse):
* lisp/cedet/ede/files.el (ede--inode-for-dir):
* lisp/cedet/semantic/db-file.el (object-write):
* lisp/cedet/semantic/db-mode.el (semanticdb-kill-hook):
* lisp/cedet/semantic/db.el (semanticdb-needs-refresh-p)
(semanticdb-synchronize):
* lisp/cedet/srecode/table.el (srecode-mode-table-new):
* lisp/desktop.el (desktop-save, desktop-read):
* lisp/dired-aux.el (dired-file-set-difference)
(dired-do-chxxx, dired-do-chmod, dired-copy-file-recursive)
(dired-create-files):
* lisp/dired.el (dired-directory-changed-p, dired-readin):
* lisp/dos-w32.el (w32-direct-print-region-helper):
* lisp/emacs-lisp/autoload.el (autoload-generate-file-autoloads)
(autoload-find-destination, update-directory-autoloads):
* lisp/emacs-lisp/shadow.el (load-path-shadows-same-file-or-nonexistent):
* lisp/epg.el (epg--start, epg-wait-for-completion):
* lisp/eshell/em-ls.el (eshell-ls-filetype-p)
(eshell-ls-applicable, eshell-ls-size-string)
(eshell-ls-file, eshell-ls-dir, eshell-ls-files)
(eshell-ls-entries):
* lisp/eshell/em-pred.el (eshell-predicate-alist)
(eshell-pred-file-type, eshell-pred-file-links)
(eshell-pred-file-size):
* lisp/eshell/em-unix.el (eshell-shuffle-files, eshell/cat)
(eshell-du-sum-directory, eshell/du):
* lisp/eshell/esh-util.el (eshell-read-passwd)
(eshell-read-hosts):
* lisp/files.el (remote-file-name-inhibit-cache)
(find-file-noselect, insert-file-1, dir-locals-find-file)
(dir-locals-read-from-dir, backup-buffer)
(file-ownership-preserved-p, copy-directory)
(read-file-modes):
* lisp/find-lisp.el (find-lisp-format):
* lisp/gnus/gnus-agent.el (gnus-agent-unfetch-articles)
(gnus-agent-read-agentview, gnus-agent-expire-group-1)
(gnus-agent-request-article, gnus-agent-regenerate-group)
(gnus-agent-update-files-total-fetched-for)
(gnus-agent-update-view-total-fetched-for):
* lisp/gnus/gnus-cache.el (gnus-cache-read-active)
(gnus-cache-update-file-total-fetched-for)
(gnus-cache-update-overview-total-fetched-for):
* lisp/gnus/gnus-cloud.el (gnus-cloud-file-new-p):
* lisp/gnus/gnus-score.el (gnus-score-score-files):
* lisp/gnus/gnus-start.el (gnus-save-newsrc-file)
(gnus-master-read-slave-newsrc):
* lisp/gnus/gnus-sum.el (gnus-summary-import-article):
* lisp/gnus/gnus-util.el (gnus-file-newer-than)
(gnus-cache-file-contents):
* lisp/gnus/mail-source.el (mail-source-delete-old-incoming)
(mail-source-callback, mail-source-movemail):
* lisp/gnus/nneething.el (nneething-create-mapping)
(nneething-make-head):
* lisp/gnus/nnfolder.el (nnfolder-read-folder):
* lisp/gnus/nnheader.el (nnheader-file-size)
(nnheader-insert-nov-file):
* lisp/gnus/nnmail.el (nnmail-activate):
* lisp/gnus/nnmaildir.el (nnmaildir--group-maxnum)
(nnmaildir--new-number, nnmaildir--update-nov)
(nnmaildir--scan, nnmaildir-request-scan)
(nnmaildir-request-update-info)
(nnmaildir-request-expire-articles):
* lisp/gnus/nnmh.el (nnmh-request-list-1)
(nnmh-request-expire-articles, nnmh-update-gnus-unreads):
* lisp/gnus/nnml.el (nnml-request-expire-articles):
* lisp/gnus/spam-stat.el (spam-stat-save, spam-stat-load)
(spam-stat-process-directory, spam-stat-test-directory):
* lisp/ido.el (ido-directory-too-big-p)
(ido-file-name-all-completions):
* lisp/image-dired.el (image-dired-get-thumbnail-image)
(image-dired-create-thumb-1):
* lisp/info.el (info-insert-file-contents):
* lisp/ls-lisp.el (ls-lisp-insert-directory)
(ls-lisp-handle-switches, ls-lisp-classify-file)
(ls-lisp-format):
* lisp/mail/blessmail.el:
* lisp/mail/feedmail.el (feedmail-default-date-generator)
(feedmail-default-message-id-generator):
* lisp/mail/mailabbrev.el (mail-abbrevs-sync-aliases)
(mail-abbrevs-setup):
* lisp/mail/mspools.el (mspools-size-folder):
* lisp/mail/rmail.el (rmail-insert-inbox-text):
* lisp/mail/sendmail.el (sendmail-sync-aliases):
* lisp/mh-e/mh-alias.el (mh-alias-tstamp):
* lisp/net/ange-ftp.el (ange-ftp-parse-netrc)
(ange-ftp-write-region, ange-ftp-file-newer-than-file-p)
(ange-ftp-cf1):
* lisp/net/eudcb-mab.el (eudc-mab-query-internal):
* lisp/net/eww.el (eww-read-bookmarks):
* lisp/net/netrc.el (netrc-parse):
* lisp/net/newst-backend.el (newsticker--image-get):
* lisp/nxml/rng-loc.el (rng-get-parsed-schema-locating-file):
* lisp/obsolete/fast-lock.el (fast-lock-save-cache):
* lisp/obsolete/vc-arch.el (vc-arch-state)
(vc-arch-diff3-rej-p):
* lisp/org/ob-eval.el (org-babel--shell-command-on-region):
* lisp/org/org-attach.el (org-attach-commit):
* lisp/org/org-macro.el (org-macro-initialize-templates):
* lisp/org/org.el (org-babel-load-file)
(org-file-newer-than-p):
* lisp/org/ox-html.el (org-html-format-spec):
* lisp/org/ox-publish.el (org-publish-find-date)
(org-publish-cache-ctime-of-src):
* lisp/pcmpl-gnu.el (pcomplete/tar):
* lisp/pcmpl-rpm.el (pcmpl-rpm-packages):
* lisp/play/cookie1.el (cookie-snarf):
* lisp/progmodes/cmacexp.el (c-macro-expansion):
* lisp/ps-bdf.el (bdf-file-mod-time):
* lisp/server.el (server-ensure-safe-dir):
* lisp/simple.el (shell-command-on-region):
* lisp/speedbar.el (speedbar-item-info-file-helper)
(speedbar-check-obj-this-line):
* lisp/thumbs.el (thumbs-cleanup-thumbsdir):
* lisp/time.el (display-time-mail-check-directory)
(display-time-file-nonempty-p):
* lisp/url/url-cache.el (url-is-cached):
* lisp/url/url-file.el (url-file-asynch-callback):
* lisp/vc/diff-mode.el (diff-delete-if-empty):
* lisp/vc/pcvs-info.el (cvs-fileinfo-from-entries):
* lisp/vc/vc-bzr.el (vc-bzr-state-heuristic):
* lisp/vc/vc-cvs.el (vc-cvs-checkout-model)
(vc-cvs-state-heuristic, vc-cvs-merge-news)
(vc-cvs-retrieve-tag, vc-cvs-parse-status, vc-cvs-parse-entry):
* lisp/vc/vc-hg.el (vc-hg--slurp-hgignore-1)
(vc-hg--ignore-patterns-valid-p)
(vc-hg--cached-dirstate-search, vc-hg-state-fast):
* lisp/vc/vc-hooks.el (vc-after-save):
* lisp/vc/vc-rcs.el (vc-rcs-workfile-is-newer):
* lisp/vc/vc-svn.el (vc-svn-merge-news, vc-svn-parse-status):
* lisp/vc/vc.el (vc-checkout, vc-checkin, vc-revert-file):
* lisp/xdg.el (xdg-mime-apps):
Prefer (file-attribute-size A) to (nth 7 A), and similarly
for other file attributes accessors.
* doc/lispref/files.texi (File Attributes):
* doc/lispref/intro.texi (Version Info):
* doc/lispref/os.texi (Idle Timers):
* lisp/erc/erc.el (erc-string-to-emacs-time):
* lisp/files.el (file-attribute-access-time)
(file-attribute-modification-time)
(file-attribute-status-change-time):
* lisp/net/tramp-compat.el:
(tramp-compat-file-attribute-modification-time)
(tramp-compat-file-attribute-size):
* src/buffer.c (syms_of_buffer):
* src/editfns.c (Fget_internal_run_time):
* src/fileio.c (Fvisited_file_modtime)
(Fset_visited_file_modtime):
* src/keyboard.c (Fcurrent_idle_time):
* src/process.c (Fprocess_attributes):
Defer implementation details about timestamp format to the
section that talks about timestamp format, to make it easier
to change the documentation later if timestamp formats are
extended.
* lisp/gnus/gnus-util.el (gnus-file-newer-than):
* lisp/speedbar.el (speedbar-check-obj-this-line):
* lisp/vc/vc-rcs.el (vc-rcs-workfile-is-newer):
Prefer time-less-p to doing it by hand.
* lisp/ls-lisp.el (ls-lisp-format): Inode numbers are no longer conses.
* lisp/vc/vc-bzr.el (vc-bzr-state-heuristic):
Use eql, not eq, to compare integers that might be bignums.
* lisp/org/ox-publish.el (org-publish-cache-ctime-of-src):
Prefer float-time to doing time arithmetic by hand.
2018-09-23 18:30:46 -07:00
|
|
|
|
maximize (float-time
|
|
|
|
|
(file-attribute-modification-time
|
|
|
|
|
(file-attributes f))))))
|
2017-09-24 22:28:51 -04:00
|
|
|
|
;; If one of the MIME/Desktop cache files has been modified:
|
|
|
|
|
(when (or (null mtim1) (time-less-p mtim1 mtim2))
|
|
|
|
|
(setq xdg-mime-table nil)))
|
|
|
|
|
(when (null (assoc type xdg-mime-table))
|
|
|
|
|
(push (cons type (make-hash-table :test #'equal)) xdg-mime-table))
|
2025-03-29 13:50:21 +01:00
|
|
|
|
(if (let ((table (cdr (assoc type xdg-mime-table))))
|
|
|
|
|
(hash-table-contains-p subtype table))
|
2017-09-24 22:28:51 -04:00
|
|
|
|
files
|
|
|
|
|
(and files (setq files nil))
|
|
|
|
|
(let ((dirs (mapcar (lambda (dir) (expand-file-name "applications" dir))
|
|
|
|
|
(cons (xdg-data-home) xdg-data-dirs))))
|
|
|
|
|
;; Not being particular about desktop IDs
|
|
|
|
|
(dolist (f (nreverse (xdg-mime-collect-associations mime caches)))
|
|
|
|
|
(push (locate-file f dirs) files))
|
|
|
|
|
(when files
|
|
|
|
|
(put 'xdg-mime-table 'mtime (current-time)))
|
|
|
|
|
(puthash subtype (delq nil files) (cdr (assoc type xdg-mime-table)))))))
|
|
|
|
|
|
2022-09-21 14:00:23 +02:00
|
|
|
|
|
|
|
|
|
;; Unofficial extension from systemd.
|
|
|
|
|
|
|
|
|
|
(defun xdg-session-type ()
|
|
|
|
|
"Return the value of $XDG_SESSION_TYPE.
|
|
|
|
|
Should be one of \"unspecified\", \"tty\", \"x11\", \"wayland\",
|
|
|
|
|
or \"mir\".
|
|
|
|
|
|
|
|
|
|
This is not part of any official Freedesktop.org standard, but is
|
|
|
|
|
documented in the man page `pam_systemd'."
|
|
|
|
|
(getenv "XDG_SESSION_TYPE"))
|
|
|
|
|
|
2017-02-06 23:27:47 -05:00
|
|
|
|
(provide 'xdg)
|
|
|
|
|
|
|
|
|
|
;;; xdg.el ends here
|