branch: externals/pabbrev
commit 6de1b9e4b57b9e1a4d598d11f4476db9ee870637
Author: Lars Ingebrigtsen <[email protected]>
Commit: Lars Ingebrigtsen <[email protected]>

    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 <[email protected]>
 ;; Maintainer: Phillip Lord <[email protected]>
-;; 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