[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
scratch/emacs-editorconfig cdcc5826d68 089/364: Add make sandbox target
From: |
Stefan Monnier |
Subject: |
scratch/emacs-editorconfig cdcc5826d68 089/364: Add make sandbox target |
Date: |
Tue, 18 Jun 2024 01:40:41 -0400 (EDT) |
branch: scratch/emacs-editorconfig
commit cdcc5826d684324701ba446c1648d475ce47d5a6
Author: 10sr <8slashes+git@gmail.com>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
Add make sandbox target
This commit adds a new Make target `sandbox`.
Issue `make sandbox` to start new Emacs that loads *.el files in current
directory and does not load the user init file.
---
Makefile | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 73d611472de..ae6a6bc1089 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ OBJS = $(SRCS:.el=.elc)
$(OBJS): %.elc: %.el
$(EMACS) $(BATCHFLAGS) -f batch-byte-compile $^
-.PHONY: all clean test test-travis test-ert test-core test-metadata
+.PHONY: all clean test test-travis test-ert test-core test-metadata sandbox
test: test-ert test-core test-metadata $(OBJS)
$(EMACS) $(BATCHFLAGS) -l editorconfig.el
@@ -43,3 +43,9 @@ test-core: core-test/CMakeLists.txt $(OBJS)
cd $(PROJECT_ROOT_DIR)/core-test && \
EMACS_BIN=$(EMACS)
EDITORCONFIG_CORE_LIBRARY_PATH="$(PROJECT_ROOT_DIR)" \
ctest --output-on-failure .
+
+
+# Start Emacs that loads *.el in current directory and does not load the user
+# init file
+sandbox:
+ $(EMACS) -q -L $(PROJECT_ROOT_DIR) $(SRCS:%=-l "%")
- scratch/emacs-editorconfig 78788959181 099/364: Make indentation of sample codes more consistent, (continued)
- scratch/emacs-editorconfig 78788959181 099/364: Make indentation of sample codes more consistent, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig adb9ba4a9d7 064/364: Update README for charset support, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 953f4f0ab77 074/364: Bump version: 0.7.1, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig a7ea6807e5a 071/364: Add ess-mode indentation support, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig f34c82709e2 077/364: Add support for scss-mode, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 50df3046e5a 081/364: Add one variable editorconfig-properties-hash, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 33b0716c668 082/364: Add editorocnfig-display-current-properties, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 998d0e8f766 086/364: Bump version to 0.7.4, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig f2629b0abb5 087/364: Do not check metadata of files other than editorconfig.el, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig e68384d544c 088/364: Refactor editorconfig-conf-mode, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig cdcc5826d68 089/364: Add make sandbox target,
Stefan Monnier <=
- scratch/emacs-editorconfig 7505fb780ff 108/364: Bump version to 0.7.6, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 331edef26d0 109/364: Remove link to Marmalade package repository, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 1c328163516 119/364: Bump version to 0.7.7, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig d79b9e410aa 104/364: Use truename for editorconfig name, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig d900f27638d 113/364: Simplify definition of string-integer-p (#96), Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig d94e1f29f33 052/364: Fix some warnings reported by flycheck, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 98a370e8896 127/364: Massive reformatting of docstrings., Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 58f10645403 057/364: Add MELPA badges, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig fe9ed9b4cbf 061/364: Fix names of ert test cases, Stefan Monnier, 2024/06/18
- scratch/emacs-editorconfig 5b9a1a38d2b 070/364: Add ps-mode indentation support, Stefan Monnier, 2024/06/18