diff --git a/pasp-mode.el b/pasp-mode.el index 7f83645..5daf08e 100644 --- a/pasp-mode.el +++ b/pasp-mode.el @@ -199,9 +199,12 @@ Argument ENCODING The current buffer which holds the problem encoding. Optional argument INSTANCE The problem instance which is solved by the encoding. If no instance it is assumed to be also in the encoding file." - (if 'instance - (concat pasp-clingo-path " " pasp-clingo-options " " encoding " " instance) - (concat pasp-clingo-path " " pasp-clingo-options " " encoding))) + (if instance + (concat pasp-clingo-path " " pasp-clingo-options " " + (shell-quote-argument encoding) " " + (shell-quote-argument instance)) + (concat pasp-clingo-path " " pasp-clingo-options " " + (shell-quote-argument encoding)))) (defun pasp-run-clingo (encoding &optional instance) "Run Clingo with some ASP input files. 'sub'>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/wget.scm
AgeCommit message (Expand)Author
2020-09-05Merge remote-tracking branch 'origin/master' into stagingEfraim Flashner
2020-09-01gnu: wgetpaste: Update bpaste URL & regular expressions....* gnu/packages/wget.scm (wgetpaste)[source]: Add patch. * gnu/packages/patches/wgetpaste-update-bpaste.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. Tobias Geerinckx-Rice
2020-09-01gnu: wgetpaste: Update to 2.30....* gnu/packages/wget.scm (wgetpaste): Update to 2.30. Tobias Geerinckx-Rice
2020-09-01gnu: wgetpaste: Use HTTPS home page....* gnu/packages/wget.scm (wgetpaste)[source, home-page]: Use HTTPS. Tobias Geerinckx-Rice
2020-09-01gnu: wgetpaste: Fix historical confusion....* gnu/packages/wget.scm (wgetpaste)[arguments]: Fix the reversed substitution and clarify its purpose. Tobias Geerinckx-Rice
2020-07-03gnu: wget: Cross-build fix....* gnu/packages/wget.scm (wget)[inputs]: Move lzip to ... [native-inputs]: ... here. Jan (janneke) Nieuwenhuizen