diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-10-08 22:41:07 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-10-08 22:41:07 +0200 |
commit | f6462f771164527da2a7b1124d6e103bd788fac6 (patch) | |
tree | a07311908d49e22b88840512d1da7659b3d6b234 | |
parent | New test for font-lock keywords (diff) | |
download | ebuild-mode-f6462f771164527da2a7b1124d6e103bd788fac6.tar.gz ebuild-mode-f6462f771164527da2a7b1124d6e103bd788fac6.tar.bz2 ebuild-mode-f6462f771164527da2a7b1124d6e103bd788fac6.zip |
Fix EMACSFLAGS
* Makefile (EMACSFLAGS): Use single hyphen for compatibility.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2024-10-08 Ulrich Müller <ulm@gentoo.org> + * Makefile (EMACSFLAGS): Use single hyphen for compatibility. + * ebuild-mode.el (ebuild-mode-collect-and-split): Preserve order. (ebuild-mode-font-lock-keywords): Add docstring. * test/ebuild-mode-tests.el (ebuild-mode-test-collect-and-split): @@ -7,7 +7,7 @@ PV = $(shell sed '/^;.*[Vv]ersion/!d;s/[^0-9.]*\([^ \t]*\).*/\1/;q' \ P = $(PN)-$(PV) EMACS = emacs -EMACSFLAGS = -batch -q --no-site-file +EMACSFLAGS = -batch -q -no-site-file BYTECOMPFLAGS = -eval "(add-to-list 'load-path nil)" DISTFILES = ebuild-mode.el ebuild-mode-keywords.el devbook-mode.el \ |