diff options
author | Richard M. Stallman <rms@gnu.org> | 1992-10-12 04:53:11 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1992-10-12 04:53:11 +0000 |
commit | e0dad66eef65e274a80d69a88f804e69f6e674a7 (patch) | |
tree | 664c23fbebc5395fc84f5671bae4cb44f477a2fa /lisp/textmodes/picture.el | |
parent | f3e23606461f3fb6189871d911bb16cc753323e2 (diff) | |
download | emacs-e0dad66eef65e274a80d69a88f804e69f6e674a7.tar.gz emacs-e0dad66eef65e274a80d69a88f804e69f6e674a7.tar.bz2 emacs-e0dad66eef65e274a80d69a88f804e69f6e674a7.zip |
(edit-picture): Run picture-mode-hook.
Diffstat (limited to 'lisp/textmodes/picture.el')
-rw-r--r-- | lisp/textmodes/picture.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index 25adad552a2..622269bec1b 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -533,7 +533,8 @@ they are not defaultly assigned to keys." (make-local-variable 'picture-vertical-step) (make-local-variable 'picture-horizontal-step) (picture-set-motion 0 1) - (run-hooks 'edit-picture-hook) + ;; edit-picture-hook is what we used to run, picture-mode-hook is in doc. + (run-hooks 'edit-picture-hook 'picture-mode-hook) (message (substitute-command-keys "Type \\[picture-mode-exit] in this buffer to return it to %s mode.") |