From: Stefan Monnier Date: Sun, 2 Dec 2001 07:06:43 +0000 (+0000) Subject: (picture-mode-map): Don't use defconst for a variable. X-Git-Tag: ttn-vms-21-2-B4~17945 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2137e978c380130b31a3afff65b744fa479baee0;p=emacs.git (picture-mode-map): Don't use defconst for a variable. --- diff --git a/lisp/textmodes/picture.el b/lisp/textmodes/picture.el index 7e36fc58ec3..dc47a89dedb 100644 --- a/lisp/textmodes/picture.el +++ b/lisp/textmodes/picture.el @@ -573,7 +573,7 @@ Leaves the region surrounding the rectangle." ;; Picture Keymap, entry and exit points. -(defconst picture-mode-map nil) +(defvar picture-mode-map nil) (defun picture-substitute (oldfun newfun) (substitute-key-definition oldfun newfun picture-mode-map global-map)) @@ -724,7 +724,7 @@ they are not defaultly assigned to keys." (defalias 'edit-picture 'picture-mode) (defun picture-mode-exit (&optional nostrip) - "Undo picture-mode and return to previous major mode. + "Undo `picture-mode' and return to previous major mode. With no argument strips whitespace from end of every line in Picture buffer otherwise just return to previous mode." (interactive "P")