emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/pabbrev 6de1b9e4b5: Don't bug out with pabbrev in Custo


From: Lars Ingebrigtsen
Subject: [elpa] externals/pabbrev 6de1b9e4b5: Don't bug out with pabbrev in Customize buffers
Date: Fri, 22 Jul 2022 11:20:08 -0400 (EDT)

branch: externals/pabbrev
commit 6de1b9e4b57b9e1a4d598d11f4476db9ee870637
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Don't bug out with pabbrev in Customize buffers
    
    * pabbrev.el (pabbrev-call-previous-tab-binding): Call the command
    interactively, because it might not be a command that takes zero
    arguments (like `widget-forward') (bug#56547).
---
 pabbrev.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pabbrev.el b/pabbrev.el
index 36149f73c6..d2102ef5ac 100644
--- a/pabbrev.el
+++ b/pabbrev.el
@@ -4,7 +4,7 @@
 
 ;; Author: Phillip Lord <phillip.lord@newcastle.ac.uk>
 ;; Maintainer: Phillip Lord <phillip.lord@newcastle.ac.uk>
-;; Version: 4.2.1
+;; Version: 4.2.2
 
 ;; The contents of this file are subject to the GPL License, Version 3.0.
 ;;
@@ -927,7 +927,7 @@ The suggestion should start with PREFIX, and be entered at 
point."
               (this-command prev-binding))
           (if (eq 'self-insert-command prev-binding)
               (self-insert-command 1)
-            (funcall prev-binding))))))
+            (call-interactively prev-binding))))))
 
 ;; (defun pabbrev-call-previous-tab-binding ()
 ;;   "Call the function normally associated with [tab]."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]