emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/completion.el,v


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/completion.el,v
Date: Sun, 23 Sep 2007 15:27:38 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Richard M. Stallman <rms>       07/09/23 15:27:38

Index: completion.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/completion.el,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -b -r1.63 -r1.64
--- completion.el       17 Aug 2007 07:31:44 -0000      1.63
+++ completion.el       23 Sep 2007 15:27:38 -0000      1.64
@@ -2231,15 +2231,19 @@
 
 (defun completion-separator-self-insert-command (arg)
   (interactive "p")
+  (if (command-remapping 'self-insert-command)
+      (funcall (command-remapping 'self-insert-command) arg)
   (use-completion-before-separator)
-  (self-insert-command arg))
+    (self-insert-command arg)))
 
 (defun completion-separator-self-insert-autofilling (arg)
   (interactive "p")
+  (if (command-remapping 'self-insert-command)
+      (funcall (command-remapping 'self-insert-command) arg)
   (use-completion-before-separator)
   (self-insert-command arg)
   (and auto-fill-function
-       (funcall auto-fill-function)))
+        (funcall auto-fill-function))))
 
 ;;-----------------------------------------------
 ;; Wrapping Macro




reply via email to

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