diff options
| author | Richard M. Stallman <rms@gnu.org> | 1996-02-14 20:11:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1996-02-14 20:11:04 +0000 |
| commit | 2ae00b00f1265b85a96ab5285c80ae0a16fb79fc (patch) | |
| tree | 1656f85eb36e10dc2c84063018ca2a4653d0b0fa | |
| parent | 555722598bc9cf938a8a3975ee6b12b00ad99ab3 (diff) | |
| download | emacs-2ae00b00f1265b85a96ab5285c80ae0a16fb79fc.tar.gz | |
(picture-mode-map): Install picture-self-insert
where completion has put its own self-insert commands.
| -rw-r--r-- | lisp/textmodes/picture.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index d672ce0738d..e2cd1897d0a 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -480,6 +480,10 @@ Leaves the region surrounding the rectangle." (progn (setq picture-mode-map (list 'keymap (make-vector 256 nil))) (picture-substitute 'self-insert-command 'picture-self-insert) + (picture-substitute 'completion-separator-self-insert-command + 'picture-self-insert) + (picture-substitute 'completion-separator-self-insert-autofilling + 'picture-self-insert) (picture-substitute 'forward-char 'picture-forward-column) (picture-substitute 'backward-char 'picture-backward-column) (picture-substitute 'delete-char 'picture-clear-column) |
