From 9cd7d57ed1574c47b79acd8ad54148dd9ff234e4 Mon Sep 17 00:00:00 2001 From: oscar Date: Sun, 16 May 2010 01:15:34 +0200 Subject: [PATCH] Removed some debug code --- magit.el | 2 -- 1 file changed, 2 deletions(-) diff --git a/magit.el b/magit.el index 22933f88..0d7e988b 100644 --- a/magit.el +++ b/magit.el @@ -3552,11 +3552,9 @@ With a non numeric prefix ARG, show all entries" (catch 'exit (while t (setq c (read-char-exclusive prompt)) - (message "%s" c) (let ((case-fold-search nil)) (dolist (item magit-menu) (when (char-equal c (nth 1 item)) - (message "%s" (nth 2 item)) (setq chosen-fn (nth 3 item)) (throw 'exit 0)))) (error "Invalid key %c" c))))