Skip to content

Commit 81643ba

Browse files
authored
Merge pull request #435 from jcs-PR/ci
Add compile error on warn flag
2 parents e8b18af + 7d6e82c commit 81643ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ build:
2727
unix-compile:
2828
@$(CASK) $(EMACS) -Q --batch \
2929
-L . \
30-
--eval '(setq treemacs-no-load-time-warnings t)' \
30+
--eval '(setq byte-compile-error-on-warn t treemacs-no-load-time-warnings t)' \
3131
-f batch-byte-compile $(DAP-GENERAL) $(DAP-CLIENTS)
3232

3333
windows-compile:
3434
@$(CASK) $(EMACS) -Q --batch \
3535
-l test/windows-bootstrap.el \
3636
-L . \
37-
--eval '(setq treemacs-no-load-time-warnings t)' \
37+
--eval '(setq byte-compile-error-on-warn t treemacs-no-load-time-warnings t)' \
3838
-f batch-byte-compile $(DAP-GENERAL) $(DAP-CLIENTS)
3939

4040
unix-ci: clean build unix-compile unix-test

dap-python.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ https://github.com/pyenv/pyenv-which-ext."
9494
:character end-character))))
9595
(make-dap-python--symbol
9696
:name name
97-
:type (alist-get kind lsp--symbol-kind)
97+
:type (alist-get kind lsp-symbol-kinds)
9898
:location (make-dap-python--location
9999
:start (make-dap-python--point :line start-line
100100
:character start-character)

0 commit comments

Comments
 (0)