Sort specifiers alphabetically

The systemd.unit(5) manpage sorts unit file specifiers alphabetically
since commit systemd/systemd@709f4c472c, and since the order in this
regular expression is even less relevant than in the manpage, let’s just
do the same to make it easy to compare the letter sets between the two.
This commit is contained in:
Lucas Werkmeister 2018-06-28 10:05:32 +02:00 committed by Mark Oteiza
parent e97f78ee11
commit 21d50f27d8

View File

@ -337,7 +337,7 @@ See `font-lock-keywords' and (info \"(elisp) Search-based Fontification\")."
("\\$[A-Z_]+\\>" ("\\$[A-Z_]+\\>"
(systemd-value-extend-region) nil (0 'font-lock-variable-name-face)) (systemd-value-extend-region) nil (0 'font-lock-variable-name-face))
;; specifiers ;; specifiers
("%[nNpPiIfcrRtSCLuUhsmbHv%]" ("%[bcCfhHiILmnNpPrRsStuUv%]"
(systemd-value-extend-region) nil (0 'font-lock-constant-face)))) (systemd-value-extend-region) nil (0 'font-lock-constant-face))))
"Extended expressions to highlight in `systemd-mode'.") "Extended expressions to highlight in `systemd-mode'.")