From d01823361100cdc25425c76686ba6e5afcda717c Mon Sep 17 00:00:00 2001 From: David Christiansen Date: Mon, 1 Aug 2016 08:58:22 -0400 Subject: [PATCH] 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. --- cubicaltt.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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")) -- 2.34.1