From a30fb6fa59b1036c3cd9c640e16fb688c8207227 Mon Sep 17 00:00:00 2001 From: yuhan0 Date: Fri, 6 Dec 2019 18:11:50 +0800 Subject: [PATCH] Fix interactive call of doom/narrow-buffer-indirectly Optional 3rd arg was removed in f9190c08bfb908df1df3cc49ee2ecec4b360d42c --- core/autoload/ui.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/autoload/ui.el b/core/autoload/ui.el index 7a0b8a447..80735e26f 100644 --- a/core/autoload/ui.el +++ b/core/autoload/ui.el @@ -179,8 +179,7 @@ narrowing doesn't affect other windows displaying the same buffer. Call Inspired from http://demonastery.org/2013/04/emacs-evil-narrow-region/" (interactive (list (or (bound-and-true-p evil-visual-beginning) (region-beginning)) - (or (bound-and-true-p evil-visual-end) (region-end)) - current-prefix-arg)) + (or (bound-and-true-p evil-visual-end) (region-end)))) (unless (region-active-p) (setq beg (line-beginning-position) end (line-end-position)))