Skip to content

Commit

Permalink
fix prompt format
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma committed Mar 10, 2013
1 parent 6a494e0 commit 6603727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gist.el
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ for the gist."
(defun gist-kill-current ()
(interactive)
(let ((id (tabulated-list-get-id)))
(when (yes-or-no-p (format "Really delete gist %s ?" id) )
(when (yes-or-no-p (format "Really delete gist %s ? " id) )
(let* ((api (gist-get-api t))
(resp (gh-gist-delete api id)))
(gist-list-reload)))))
Expand Down

0 comments on commit 6603727

Please sign in to comment.