(defun my-electric-character (&optional arg) "Insert the typed character and pop up a completion buffer" (interactive "P") (self-insert-command (prefix-numeric-value arg)) ...)
How can I invoke this function from my program with a certain character, so that it behaves just like if the user typed the character on the keyboard?
-- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ _______________________________________________ Help-gnu-emacs mailing list Help-gnu-emacs@gnu.org http://lists.gnu.org/mailman/listinfo/help-gnu-emacs