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. ix
aboutsummaryrefslogtreecommitdiff
path: root/HACKING
AgeCommit message (Expand)Author
2020-10-23doc: Fix typo in HACKING....* HACKING (Contributing): s/informations/information/. Maxim Cournoyer
2020-01-09doc: Move "Commit Access" section from 'HACKING' to the manual....* HACKING (Commit Access): Remove. (Contributing): Update URL of the manual. * doc/contributing.texi (Commit Access): New section. (Submitting Patches): Add cross reference. Ludovic Courtès
2020-01-09doc: Add "Tracking Bugs and Patches" section....* doc/contributing.texi (Tracking Bugs and Patches): New section. (Submitting Patches): Refer to it. * doc/guix.texi: Update copyright line. * HACKING (Using emacs-debbugs): Remove. Ludovic Courtès
2019-07-13doc: Update keyserver URL....* HACKING (Commit Access): Change keyserver URL to 'keys.openpgp.org'. Leo Famulari