Skip to content

Commit

Permalink
Fix build error unused symbol program
Browse files Browse the repository at this point in the history
  • Loading branch information
svaante committed Sep 24, 2024
1 parent b20ba5d commit 456b84d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dape.el
Original file line number Diff line number Diff line change
Expand Up @@ -5087,10 +5087,10 @@ If LOOSE-PARSING is non nil ignore arg parsing failures."
(buffer-substring (point) (point-max)))
with setvar = "\\`\\([A-Za-z_][A-Za-z0-9_]*\\)=\\(.*\\)\\'"
for cell on command for (program . args) = cell
if (string-match setvar program)
when (string-match setvar program)
append `(,(intern (concat ":" (match-string 1 program)))
,(match-string 2 program))
into env and for program = nil
into env and do (setq program nil)
when (or (and (not program) (not args)) program) do
(setq read-config
(append (nreverse
Expand Down

0 comments on commit 456b84d

Please sign in to comment.