diff options
| author | Glenn Morris | 2013-08-13 00:56:43 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-08-13 00:56:43 -0700 |
| commit | 55e47f950d4fcc5fd0b02a02aa8c7d622ffaa0d4 (patch) | |
| tree | 45f2e85e28efff7427f96eec48e8050034f8c54c /lisp/obsolete | |
| parent | f0024d8c0dbe5dcb2551bf2433af39ffe7cb8f7a (diff) | |
| download | emacs-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.el | 4 |
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) |