give the cheat buffer a name

This commit is contained in:
Chris Wanstrath 2008-11-26 15:42:20 -08:00
parent e94f2ed56c
commit 688d3b0ec2

View file

@ -135,7 +135,10 @@ The cheat can be saved with `cheat-save-current-buffer'."
(defun cheat-command (&rest rest) (defun cheat-command (&rest rest)
"Run the cheat command with the given arguments, display the output." "Run the cheat command with the given arguments, display the output."
(interactive "sArguments for cheat: \n") (interactive "sArguments for cheat: \n")
(shell-command (concat "cheat " (string-join " " rest)))) (let* ((cmd (string-join " " rest))
(buffer (get-buffer-create
(concat "*Cheat: " cmd "*"))))
(shell-command (concat "cheat " cmd) buffer)))
(defun cheat-command-to-string (&rest rest) (defun cheat-command-to-string (&rest rest)
"Run the cheat command with the given arguments and return the output as a "Run the cheat command with the given arguments and return the output as a