From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: bug#2409: bug#2409: 23.0.90; org-mode + viper-mode + ns make typing unresponsive Date: Tue, 17 May 2016 19:35:32 +0200 Message-ID: References: <5A1A94B2-B206-4068-87C8-138E6D202BDE@sanityinc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b2iuf-0002fR-88 for emacs-orgmode@gnu.org; Tue, 17 May 2016 13:36:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b2iud-0000nE-8K for emacs-orgmode@gnu.org; Tue, 17 May 2016 13:36:08 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: 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" To: 2409@debbugs.gnu.org Hi all I did some trials in lisp/org/org.el with - Emacs on OS X built with configure --with-ns, 24.5 and today's master - Org from today's master 1) Removing the line containing org-self-insert-command from (org-remap org-mode-map 'self-insert-command 'org-self-insert-command 'delete-char 'org-delete-char 'delete-backward-char 'org-delete-backward-char) lets the issue disappear. So the issue seems at least _related_ to org-self-insert-command. 2) When I instead remove all forms that contain org-self-insert-command or orgtbl-self-insert-command and then add ;; Reduce to a passing through to `self-insert-command'. (defun org-self-insert-command (N) (interactive "p") (self-insert-command N)) ;; Leave this as it was originally. (org-remap org-mode-map 'self-insert-command 'org-self-insert-command 'delete-char 'org-delete-char 'delete-backward-char 'org-delete-backward-char) the issue remains but I expect it to disappear. Did I not replace self-insert-command just with itself and it should behave the same way as with change 1)? Michael