From: Catalin Marinas Date: Mon, 13 Jul 2009 16:58:02 +0000 (+0100) Subject: Merge commit 'kha/safe' X-Git-Tag: v0.15-rc2~23 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/b4f67189be1f267aa6bcb05d442f6e7c5cf6697f?hp=5c365a2ba60dc0debfeefdb50be232c1166ae939 Merge commit 'kha/safe' --- diff --git a/.mailmap b/.mailmap index cdb1beb..1a2b506 100644 --- a/.mailmap +++ b/.mailmap @@ -3,5 +3,5 @@ Bryan Larsen Bryan Larsen -Karl Hasselström +Karl Wiberg Paolo 'Blaisorblade' Giarrusso diff --git a/AUTHORS b/AUTHORS index 6617806..34de9fd 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ Catalin Marinas http://www.procode.org/about.html -Karl Hasselström +Karl Wiberg http://www.treskal.com/kalle/ diff --git a/contrib/stgit.el b/contrib/stgit.el index ed6342c..3ebbffb 100644 --- a/contrib/stgit.el +++ b/contrib/stgit.el @@ -68,6 +68,8 @@ (defmacro stgit-capture-output (name &rest body) "Capture StGit output and, if there was any output, show it in a window at the end. Returns nil if there was no output." + (declare (debug ([&or stringp null] body)) + (indent 1)) `(let ((output-buf (get-buffer-create ,(or name "*StGit output*"))) (stgit-dir default-directory) (inhibit-read-only t)) @@ -82,7 +84,6 @@ (defmacro stgit-capture-output (name &rest body) (setq buffer-read-only t) (if (< (point-min) (point-max)) (display-buffer output-buf t))))) -(put 'stgit-capture-output 'lisp-indent-function 1) (defun stgit-make-run-args (args) "Return a copy of ARGS with its elements converted to strings."