aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/obsolete
diff options
context:
space:
mode:
authorGlenn Morris2013-08-13 00:56:43 -0700
committerGlenn Morris2013-08-13 00:56:43 -0700
commit55e47f950d4fcc5fd0b02a02aa8c7d622ffaa0d4 (patch)
tree45f2e85e28efff7427f96eec48e8050034f8c54c /lisp/obsolete
parentf0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a (diff)
downloademacs-55e47f950d4fcc5fd0b02a02aa8c7d622ffaa0d4.tar.gz
emacs-55e47f950d4fcc5fd0b02a02aa8c7d622ffaa0d4.zip
Tweak some settings of compile-command
* progmodes/compile.el (compile-command): Tweak example in doc. * obsolete/scribe.el (scribe-mode): * progmodes/mixal-mode.el (mixal-mode): Quote buffer name. Fixes: debbugs:15053
Diffstat (limited to 'lisp/obsolete')
-rw-r--r--lisp/obsolete/scribe.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/obsolete/scribe.el b/lisp/obsolete/scribe.el
index 8396cce3e27..2ba1bb4aa76 100644
--- a/lisp/obsolete/scribe.el
+++ b/lisp/obsolete/scribe.el
@@ -144,7 +144,9 @@ Interesting variables:
144 (set (make-local-variable 'sentence-end) 144 (set (make-local-variable 'sentence-end)
145 "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*") 145 "\\([.?!]\\|@:\\)[]\"')}]*\\($\\| $\\|\t\\| \\)[ \t\n]*")
146 (set (make-local-variable 'compile-command) 146 (set (make-local-variable 'compile-command)
147 (concat "scribe " (buffer-file-name)))) 147 (concat "scribe "
148 (if buffer-file-name
149 (shell-quote-argument (buffer-file-name))))))
148 150
149(defun scribe-tab () 151(defun scribe-tab ()
150 (interactive) 152 (interactive)