]> git.eshelyaron.com Git - emacs.git/commitdiff
Add helpful comment to compile-command's docstring
authorNoam Postavsky <npostavs@gmail.com>
Thu, 5 Jan 2017 00:35:04 +0000 (19:35 -0500)
committerNoam Postavsky <npostavs@gmail.com>
Sat, 7 Jan 2017 14:30:00 +0000 (09:30 -0500)
* lisp/progmodes/compile.el (compile-command): Mention trailing space in
docstring (Bug#25337).

lisp/progmodes/compile.el

index e62e017aa0ad808806495b7006ee69fc4e99cd58..0cb3f3bfdddc2fe477be530efcf1141fe8aa1d75 100644 (file)
@@ -680,7 +680,9 @@ You might also use mode hooks to specify it in certain modes, like this:
                (concat \"make -k \"
                        (if buffer-file-name
                          (shell-quote-argument
-                           (file-name-sans-extension buffer-file-name))))))))"
+                           (file-name-sans-extension buffer-file-name))))))))
+
+It's often useful to leave a space at the end of the value."
   :type 'string
   :group 'compilation)
 ;;;###autoload(put 'compile-command 'safe-local-variable (lambda (a) (and (stringp a) (or (not (boundp 'compilation-read-command)) compilation-read-command))))