1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(picture-vertical-step)

(picture-horizontal-step): Don't use defconst for variables.
This commit is contained in:
Stefan Monnier 2001-11-19 23:45:15 +00:00
parent 5829a569ec
commit 99b3bc616b

View File

@ -130,10 +130,10 @@ With argument, move that many lines."
(if (> current-column picture-desired-column)
(forward-char -1))))
(defconst picture-vertical-step 0
(defvar picture-vertical-step 0
"Amount to move vertically after text character in Picture mode.")
(defconst picture-horizontal-step 1
(defvar picture-horizontal-step 1
"Amount to move horizontally after text character in Picture mode.")
(defun picture-move-up (arg)