From: David Christiansen Date: Mon, 1 Aug 2016 12:58:22 +0000 (-0400) Subject: Better comment about space-escaping in Emacs mode X-Git-Url: https://git.ak3n.com/?a=commitdiff_plain;h=d01823361100cdc25425c76686ba6e5afcda717c;p=cubicaltt.git Better comment about space-escaping in Emacs mode The behavior of :cd at the cubical shell is now better described in a comment, so as to not surprise Elisp hackers. --- diff --git a/cubicaltt.el b/cubicaltt.el index 5ad435f..b70edce 100644 --- a/cubicaltt.el +++ b/cubicaltt.el @@ -132,7 +132,8 @@ If no buffer is loaded, then this variable is nil.") (f (file-name-nondirectory file))) (save-buffer) ;; Get in the right working directory. No space-escaping is - ;; necessary for cubical. + ;; necessary for cubical, which in fact expects filenames to be + ;; written without quotes or space-escaping. (comint-send-string cubical-proc (concat ":cd " dir "\n")) ;; Load the file (comint-send-string cubical-proc (concat ":l " f "\n"))