From 8634d0e4f41c10632d993bbd2c50813009d57c8e Mon Sep 17 00:00:00 2001 From: James Bunton Date: Tue, 14 Feb 2017 12:32:05 +1100 Subject: [PATCH] Work around yank text bug --- lisp/my-minor-modes.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/my-minor-modes.el b/lisp/my-minor-modes.el index b6e36ea..34ee915 100644 --- a/lisp/my-minor-modes.el +++ b/lisp/my-minor-modes.el @@ -32,6 +32,7 @@ (setq goto-address-highlight-keymap (let ((m (make-sparse-keymap))) (define-key m (kbd "C-") 'goto-address-at-point) + (define-key m (kbd "") 'ignore) ; fixes yank text bug for some reason (define-key m (kbd "C-c RET") 'goto-address-at-point) m)) -- 2.39.2