From 633db417fc3e905b28b017facdf596b36914b44d Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Sun, 2 Jul 2017 18:04:38 +0200 Subject: [PATCH] Remove pointless code in 'electric-quote-mode' * lisp/electric.el (electric-quote-post-self-insert-function): Remove pointless form. --- lisp/electric.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lisp/electric.el b/lisp/electric.el index 6e1b685ed66..96c805bb5fb 100644 --- a/lisp/electric.el +++ b/lisp/electric.el @@ -482,11 +482,7 @@ This requotes when a quoting key is typed." (eq beg (nth 8 (save-excursion (syntax-ppss (1- (point))))))))) (and electric-quote-paragraph - (derived-mode-p 'text-mode) - ;; FIXME: Why is the next form there? It’s never - ;; nil. - (or (eq last-command-event ?\`) - (save-excursion (backward-paragraph) (point)))))) + (derived-mode-p 'text-mode)))) (pcase electric-quote-chars (`(,q< ,q> ,q<< ,q>>) (save-excursion -- 2.39.5