From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kyle Meyer Subject: [PATCH] org.el: Remove org-timer-cancel-timer binding Date: Fri, 24 Apr 2015 12:58:41 -0400 Message-ID: <87tww579a6.fsf@kmlap.domain.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33241) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YlgwD-0007RY-Qu for emacs-orgmode@gnu.org; Fri, 24 Apr 2015 12:58:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ylgw9-00051x-E3 for emacs-orgmode@gnu.org; Fri, 24 Apr 2015 12:58:49 -0400 Received: from mail-qc0-f181.google.com ([209.85.216.181]:36640) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ylgw9-00051r-Ao for emacs-orgmode@gnu.org; Fri, 24 Apr 2015 12:58:45 -0400 Received: by qcpm10 with SMTP id m10so28956954qcp.3 for ; Fri, 24 Apr 2015 09:58:44 -0700 (PDT) Received: from localhost ([2601:6:5480:1e5:9e4e:36ff:fe3d:ae9c]) by mx.google.com with ESMTPSA id v37sm8648391qgv.18.2015.04.24.09.58.43 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 24 Apr 2015 09:58:44 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Org-mode --=-=-= Content-Type: text/plain This patch deletes the binding for org-timer-cancel-timer binding, which I should have removed when I merged the two timer APIs (commit 173b0cb6d6d). --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-org.el-Remove-org-timer-cancel-timer-binding.patch >From bb87c7369dc21cc0e0884171c0672af3b59fa463 Mon Sep 17 00:00:00 2001 From: Kyle Meyer Date: Fri, 24 Apr 2015 12:53:43 -0400 Subject: [PATCH] org.el: Remove org-timer-cancel-timer binding * lisp/org.el (org-mode-map): Remove binding for deleted command org-timer-cancel-timer. The command org-timer-cancel-timer was removed in 173b0cb6d6. --- lisp/org.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 4856ba4..5d0b6a9 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -19887,7 +19887,6 @@ (org-defkey org-mode-map "\C-c\C-xE" 'org-inc-effort) (org-defkey org-mode-map "\C-c\C-xo" 'org-toggle-ordered-property) (org-defkey org-mode-map "\C-c\C-xi" 'org-insert-columns-dblock) (org-defkey org-mode-map [(control ?c) (control ?x) ?\;] 'org-timer-set-timer) -(org-defkey org-mode-map [(control ?c) (control ?x) ?\:] 'org-timer-cancel-timer) (org-defkey org-mode-map "\C-c\C-x." 'org-timer) (org-defkey org-mode-map "\C-c\C-x-" 'org-timer-item) -- 2.3.5 --=-=-= Content-Type: text/plain -- Kyle --=-=-=--